2024-02-22T22:09:20.043 INFO:root:teuthology version: 0.0.1.dev260+gb1dac55 2024-02-22T22:09:20.043 DEBUG:teuthology.run:Teuthology command: teuthology --description rados/cephadm/smoke-roleless/{0-distro/ubuntu_20.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} --name yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi --owner scheduled_yuriw@teuthology --verbose --archive /home/teuthworker/archive/yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi/7571373 -- /home/teuthworker/archive/yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi/7571373/orig.config.yaml 2024-02-22T22:09:20.081 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-02-22T22:09:20.157 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi/7571373 branch: pacific-release description: rados/cephadm/smoke-roleless/{0-distro/ubuntu_20.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} email: null first_in_suite: false job_id: '7571373' 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: '20.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 kernel: hwe: true 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: smithi049.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFyT/r7xuKfmg50w0OdQebr4A/ptJo1Zk6DyZNZNZM/q5rW+sznh+wvHqeT3e4YtCdZLaXyvMms8o8u8H5nXOYM= smithi195.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFyT/r7xuKfmg50w0OdQebr4A/ptJo1Zk6DyZNZNZM/q5rW+sznh+wvHqeT3e4YtCdZLaXyvMms8o8u8H5nXOYM= tasks: - nvme_loop: null - cephadm: roleless: true - cephadm.shell: host.a: - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - vip: null - cephadm.shell: host.a: - ceph orch device ls --refresh - vip.exec: all-hosts: - systemctl stop nfs-server - cephadm.shell: host.a: - ceph 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-22T22:09:20.157 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_kamoltat_ceph_4f758cd8e8854d1f126da86e254076852bf059a9/qa; will attempt to use it 2024-02-22T22:09:20.157 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_kamoltat_ceph_4f758cd8e8854d1f126da86e254076852bf059a9/qa/tasks 2024-02-22T22:09:20.158 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-02-22T22:09:20.159 INFO:teuthology.task.internal:Checking packages... 2024-02-22T22:09:20.182 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash 'eb66ed921e744301e6863be6353618d63967ea59' 2024-02-22T22:09:20.182 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-02-22T22:09:20.182 INFO:teuthology.packaging:ref: None 2024-02-22T22:09:20.182 INFO:teuthology.packaging:tag: None 2024-02-22T22:09:20.182 INFO:teuthology.packaging:branch: pacific-release 2024-02-22T22:09:20.182 INFO:teuthology.packaging:sha1: eb66ed921e744301e6863be6353618d63967ea59 2024-02-22T22:09:20.182 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F20.04%2Fx86_64&ref=pacific-release 2024-02-22T22:09:20.328 INFO:teuthology.task.internal:Found packages for ceph version 16.2.14-550-geb66ed92-1focal 2024-02-22T22:09:20.329 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-02-22T22:09:20.335 INFO:teuthology.task.internal:no buildpackages task found 2024-02-22T22:09:20.335 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-02-22T22:09:20.341 INFO:teuthology.task.internal:Saving configuration 2024-02-22T22:09:20.353 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-02-22T22:09:20.359 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-02-22T22:09:20.386 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi049.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi/7571373', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '20.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-02-22 22:01:46.447509', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGETOy3xONfbx7kUFCNiUtRLNfkcrcEsWzPdq6Np/6Bw'} 2024-02-22T22:09:20.404 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi195.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi/7571373', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '20.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-02-22 22:01:46.446089', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGETOy3xONfbx7kUFCNiUtRLNfkcrcEsWzPdq6Np/6Bw'} 2024-02-22T22:09:20.404 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-02-22T22:09:20.410 INFO:teuthology.task.internal:roles: ubuntu@smithi049.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-02-22T22:09:20.410 INFO:teuthology.task.internal:roles: ubuntu@smithi195.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-02-22T22:09:20.410 INFO:teuthology.run_tasks:Running task console_log... 2024-02-22T22:09:20.478 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f03699430d0>, signals=[15]) 2024-02-22T22:09:20.478 INFO:teuthology.run_tasks:Running task internal.connect... 2024-02-22T22:09:20.487 INFO:teuthology.task.internal:Opening connections... 2024-02-22T22:09:20.487 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi049.front.sepia.ceph.com 2024-02-22T22:09:20.489 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi049.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-22T22:09:20.584 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi195.front.sepia.ceph.com 2024-02-22T22:09:20.585 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi195.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-22T22:09:20.671 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-02-22T22:09:20.678 DEBUG:teuthology.orchestra.run.smithi049:> uname -m 2024-02-22T22:09:20.685 INFO:teuthology.orchestra.run.smithi049.stdout:x86_64 2024-02-22T22:09:20.685 DEBUG:teuthology.orchestra.run.smithi049:> cat /etc/os-release 2024-02-22T22:09:20.731 INFO:teuthology.orchestra.run.smithi049.stdout:NAME="Ubuntu" 2024-02-22T22:09:20.731 INFO:teuthology.orchestra.run.smithi049.stdout:VERSION="20.04.4 LTS (Focal Fossa)" 2024-02-22T22:09:20.731 INFO:teuthology.orchestra.run.smithi049.stdout:ID=ubuntu 2024-02-22T22:09:20.731 INFO:teuthology.orchestra.run.smithi049.stdout:ID_LIKE=debian 2024-02-22T22:09:20.731 INFO:teuthology.orchestra.run.smithi049.stdout:PRETTY_NAME="Ubuntu 20.04.4 LTS" 2024-02-22T22:09:20.731 INFO:teuthology.orchestra.run.smithi049.stdout:VERSION_ID="20.04" 2024-02-22T22:09:20.731 INFO:teuthology.orchestra.run.smithi049.stdout:HOME_URL="https://www.ubuntu.com/" 2024-02-22T22:09:20.731 INFO:teuthology.orchestra.run.smithi049.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-02-22T22:09:20.731 INFO:teuthology.orchestra.run.smithi049.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-02-22T22:09:20.732 INFO:teuthology.orchestra.run.smithi049.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-02-22T22:09:20.732 INFO:teuthology.orchestra.run.smithi049.stdout:VERSION_CODENAME=focal 2024-02-22T22:09:20.732 INFO:teuthology.orchestra.run.smithi049.stdout:UBUNTU_CODENAME=focal 2024-02-22T22:09:20.732 INFO:teuthology.lock.ops:Updating smithi049.front.sepia.ceph.com on lock server 2024-02-22T22:09:20.751 DEBUG:teuthology.orchestra.run.smithi195:> uname -m 2024-02-22T22:09:20.758 INFO:teuthology.orchestra.run.smithi195.stdout:x86_64 2024-02-22T22:09:20.758 DEBUG:teuthology.orchestra.run.smithi195:> cat /etc/os-release 2024-02-22T22:09:20.809 INFO:teuthology.orchestra.run.smithi195.stdout:NAME="Ubuntu" 2024-02-22T22:09:20.809 INFO:teuthology.orchestra.run.smithi195.stdout:VERSION="20.04.4 LTS (Focal Fossa)" 2024-02-22T22:09:20.809 INFO:teuthology.orchestra.run.smithi195.stdout:ID=ubuntu 2024-02-22T22:09:20.809 INFO:teuthology.orchestra.run.smithi195.stdout:ID_LIKE=debian 2024-02-22T22:09:20.809 INFO:teuthology.orchestra.run.smithi195.stdout:PRETTY_NAME="Ubuntu 20.04.4 LTS" 2024-02-22T22:09:20.809 INFO:teuthology.orchestra.run.smithi195.stdout:VERSION_ID="20.04" 2024-02-22T22:09:20.809 INFO:teuthology.orchestra.run.smithi195.stdout:HOME_URL="https://www.ubuntu.com/" 2024-02-22T22:09:20.810 INFO:teuthology.orchestra.run.smithi195.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-02-22T22:09:20.810 INFO:teuthology.orchestra.run.smithi195.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-02-22T22:09:20.810 INFO:teuthology.orchestra.run.smithi195.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-02-22T22:09:20.810 INFO:teuthology.orchestra.run.smithi195.stdout:VERSION_CODENAME=focal 2024-02-22T22:09:20.810 INFO:teuthology.orchestra.run.smithi195.stdout:UBUNTU_CODENAME=focal 2024-02-22T22:09:20.810 INFO:teuthology.lock.ops:Updating smithi195.front.sepia.ceph.com on lock server 2024-02-22T22:09:20.827 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-02-22T22:09:20.835 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-02-22T22:09:20.840 INFO:teuthology.task.internal:Checking for old test directory... 2024-02-22T22:09:20.841 DEBUG:teuthology.orchestra.run.smithi049:> test '!' -e /home/ubuntu/cephtest 2024-02-22T22:09:20.843 DEBUG:teuthology.orchestra.run.smithi195:> test '!' -e /home/ubuntu/cephtest 2024-02-22T22:09:20.848 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-02-22T22:09:20.855 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-02-22T22:09:20.855 DEBUG:teuthology.orchestra.run.smithi049:> test -z $(ls -A /var/lib/ceph) 2024-02-22T22:09:20.857 DEBUG:teuthology.orchestra.run.smithi195:> test -z $(ls -A /var/lib/ceph) 2024-02-22T22:09:20.875 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-02-22T22:09:20.916 INFO:teuthology.run_tasks:Running task kernel... 2024-02-22T22:09:20.930 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2024-02-22T22:09:20.930 INFO:teuthology.task.kernel:normalize config orig: {'hwe': True} 2024-02-22T22:09:20.930 DEBUG:teuthology.task.kernel:normalized overrides {'host.a': {'hwe': True}, 'client.0': {'hwe': True}, 'host.b': {'hwe': True}, 'client.1': {'hwe': True}} 2024-02-22T22:09:20.930 INFO:teuthology.task.kernel:config {'host.a': {'kdb': True, 'sha1': 'distro', 'hwe': True}, 'host.b': {'kdb': True, 'sha1': 'distro', 'hwe': True}}, timeout 300 2024-02-22T22:09:20.930 DEBUG:teuthology.orchestra.run.smithi049:> test -f /run/.containerenv -o -f /.dockerenv 2024-02-22T22:09:20.931 DEBUG:teuthology.orchestra.run.smithi195:> test -f /run/.containerenv -o -f /.dockerenv 2024-02-22T22:09:20.935 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-22T22:09:20.936 DEBUG:teuthology.orchestra.run.smithi049:> uname -r 2024-02-22T22:09:20.937 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-22T22:09:20.937 DEBUG:teuthology.orchestra.run.smithi195:> uname -r 2024-02-22T22:09:20.943 INFO:teuthology.orchestra.run.smithi049.stdout:5.4.0-124-generic 2024-02-22T22:09:20.943 INFO:teuthology.task.kernel:Running kernel on smithi049: 5.4.0-124-generic 2024-02-22T22:09:20.943 DEBUG:teuthology.orchestra.run.smithi049:> sudo apt-get clean 2024-02-22T22:09:20.944 INFO:teuthology.orchestra.run.smithi195.stdout:5.4.0-124-generic 2024-02-22T22:09:20.945 INFO:teuthology.task.kernel:Running kernel on smithi195: 5.4.0-124-generic 2024-02-22T22:09:20.945 DEBUG:teuthology.orchestra.run.smithi195:> sudo apt-get clean 2024-02-22T22:09:21.031 DEBUG:teuthology.orchestra.run.smithi049:> sudo apt-get update 2024-02-22T22:09:21.057 DEBUG:teuthology.orchestra.run.smithi195:> sudo apt-get update 2024-02-22T22:09:21.248 INFO:teuthology.orchestra.run.smithi195.stdout:Hit:1 http://archive.ubuntu.com/ubuntu focal InRelease 2024-02-22T22:09:21.275 INFO:teuthology.orchestra.run.smithi195.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB] 2024-02-22T22:09:21.276 INFO:teuthology.orchestra.run.smithi195.stdout:Get:3 http://security.ubuntu.com/ubuntu focal-security InRelease [114 kB] 2024-02-22T22:09:21.292 INFO:teuthology.orchestra.run.smithi049.stdout:Get:1 http://security.ubuntu.com/ubuntu focal-security InRelease [114 kB] 2024-02-22T22:09:21.357 INFO:teuthology.orchestra.run.smithi049.stdout:Hit:2 http://archive.ubuntu.com/ubuntu focal InRelease 2024-02-22T22:09:21.363 INFO:teuthology.orchestra.run.smithi195.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal-backports InRelease [108 kB] 2024-02-22T22:09:21.425 INFO:teuthology.orchestra.run.smithi049.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB] 2024-02-22T22:09:21.611 INFO:teuthology.orchestra.run.smithi195.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [3,109 kB] 2024-02-22T22:09:21.765 INFO:teuthology.orchestra.run.smithi049.stdout:Get:4 http://security.ubuntu.com/ubuntu focal-security/main i386 Packages [710 kB] 2024-02-22T22:09:21.767 INFO:teuthology.orchestra.run.smithi195.stdout:Get:6 http://security.ubuntu.com/ubuntu focal-security/main i386 Packages [710 kB] 2024-02-22T22:09:21.768 INFO:teuthology.orchestra.run.smithi195.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main i386 Packages [935 kB] 2024-02-22T22:09:21.769 INFO:teuthology.orchestra.run.smithi049.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal-backports InRelease [108 kB] 2024-02-22T22:09:21.784 INFO:teuthology.orchestra.run.smithi195.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main Translation-en [498 kB] 2024-02-22T22:09:21.788 INFO:teuthology.orchestra.run.smithi195.stdout:Get:9 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [17.2 kB] 2024-02-22T22:09:21.788 INFO:teuthology.orchestra.run.smithi195.stdout:Get:10 http://archive.ubuntu.com/ubuntu focal-updates/restricted i386 Packages [36.8 kB] 2024-02-22T22:09:21.788 INFO:teuthology.orchestra.run.smithi195.stdout:Get:11 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [2,689 kB] 2024-02-22T22:09:21.817 INFO:teuthology.orchestra.run.smithi195.stdout:Get:12 http://archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [374 kB] 2024-02-22T22:09:21.820 INFO:teuthology.orchestra.run.smithi195.stdout:Get:13 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [552 B] 2024-02-22T22:09:21.820 INFO:teuthology.orchestra.run.smithi195.stdout:Get:14 http://archive.ubuntu.com/ubuntu focal-updates/universe i386 Packages [772 kB] 2024-02-22T22:09:21.829 INFO:teuthology.orchestra.run.smithi195.stdout:Get:15 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1,165 kB] 2024-02-22T22:09:21.844 INFO:teuthology.orchestra.run.smithi195.stdout:Get:16 http://archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [279 kB] 2024-02-22T22:09:21.847 INFO:teuthology.orchestra.run.smithi195.stdout:Get:17 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [25.7 kB] 2024-02-22T22:09:21.849 INFO:teuthology.orchestra.run.smithi195.stdout:Get:18 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [26.1 kB] 2024-02-22T22:09:21.850 INFO:teuthology.orchestra.run.smithi195.stdout:Get:19 http://archive.ubuntu.com/ubuntu focal-updates/multiverse i386 Packages [8,436 B] 2024-02-22T22:09:21.850 INFO:teuthology.orchestra.run.smithi195.stdout:Get:20 http://archive.ubuntu.com/ubuntu focal-updates/multiverse Translation-en [7,768 B] 2024-02-22T22:09:21.851 INFO:teuthology.orchestra.run.smithi195.stdout:Get:21 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [620 B] 2024-02-22T22:09:21.885 INFO:teuthology.orchestra.run.smithi195.stdout:Get:22 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 Packages [45.7 kB] 2024-02-22T22:09:21.890 INFO:teuthology.orchestra.run.smithi195.stdout:Get:23 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [2,729 kB] 2024-02-22T22:09:21.907 INFO:teuthology.orchestra.run.smithi195.stdout:Get:24 http://archive.ubuntu.com/ubuntu focal-backports/main i386 Packages [36.1 kB] 2024-02-22T22:09:21.908 INFO:teuthology.orchestra.run.smithi195.stdout:Get:25 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 c-n-f Metadata [1,420 B] 2024-02-22T22:09:21.908 INFO:teuthology.orchestra.run.smithi195.stdout:Get:26 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [25.0 kB] 2024-02-22T22:09:21.909 INFO:teuthology.orchestra.run.smithi195.stdout:Get:27 http://archive.ubuntu.com/ubuntu focal-backports/universe i386 Packages [13.8 kB] 2024-02-22T22:09:21.909 INFO:teuthology.orchestra.run.smithi195.stdout:Get:28 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 c-n-f Metadata [880 B] 2024-02-22T22:09:21.912 INFO:teuthology.orchestra.run.smithi049.stdout:Get:6 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [2,729 kB] 2024-02-22T22:09:21.953 INFO:teuthology.orchestra.run.smithi195.stdout:Get:29 http://security.ubuntu.com/ubuntu focal-security/main Translation-en [414 kB] 2024-02-22T22:09:21.960 INFO:teuthology.orchestra.run.smithi195.stdout:Get:30 http://security.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [13.2 kB] 2024-02-22T22:09:21.960 INFO:teuthology.orchestra.run.smithi195.stdout:Get:31 http://security.ubuntu.com/ubuntu focal-security/restricted i386 Packages [35.5 kB] 2024-02-22T22:09:21.961 INFO:teuthology.orchestra.run.smithi195.stdout:Get:32 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [2,572 kB] 2024-02-22T22:09:21.973 INFO:teuthology.orchestra.run.smithi049.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main i386 Packages [935 kB] 2024-02-22T22:09:21.999 INFO:teuthology.orchestra.run.smithi049.stdout:Get:8 http://security.ubuntu.com/ubuntu focal-security/main Translation-en [414 kB] 2024-02-22T22:09:21.999 INFO:teuthology.orchestra.run.smithi195.stdout:Get:33 http://security.ubuntu.com/ubuntu focal-security/restricted Translation-en [359 kB] 2024-02-22T22:09:22.005 INFO:teuthology.orchestra.run.smithi195.stdout:Get:34 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [552 B] 2024-02-22T22:09:22.005 INFO:teuthology.orchestra.run.smithi195.stdout:Get:35 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [939 kB] 2024-02-22T22:09:22.007 INFO:teuthology.orchestra.run.smithi049.stdout:Get:9 http://security.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [13.2 kB] 2024-02-22T22:09:22.008 INFO:teuthology.orchestra.run.smithi049.stdout:Get:10 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [2,572 kB] 2024-02-22T22:09:22.028 INFO:teuthology.orchestra.run.smithi195.stdout:Get:36 http://security.ubuntu.com/ubuntu focal-security/universe i386 Packages [645 kB] 2024-02-22T22:09:22.040 INFO:teuthology.orchestra.run.smithi195.stdout:Get:37 http://security.ubuntu.com/ubuntu focal-security/universe Translation-en [198 kB] 2024-02-22T22:09:22.042 INFO:teuthology.orchestra.run.smithi195.stdout:Get:38 http://security.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [19.2 kB] 2024-02-22T22:09:22.049 INFO:teuthology.orchestra.run.smithi195.stdout:Get:39 http://security.ubuntu.com/ubuntu focal-security/multiverse i386 Packages [7,188 B] 2024-02-22T22:09:22.050 INFO:teuthology.orchestra.run.smithi195.stdout:Get:40 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [23.9 kB] 2024-02-22T22:09:22.050 INFO:teuthology.orchestra.run.smithi195.stdout:Get:41 http://security.ubuntu.com/ubuntu focal-security/multiverse Translation-en [5,796 B] 2024-02-22T22:09:22.050 INFO:teuthology.orchestra.run.smithi195.stdout:Get:42 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [548 B] 2024-02-22T22:09:22.058 INFO:teuthology.orchestra.run.smithi049.stdout:Get:11 http://security.ubuntu.com/ubuntu focal-security/restricted i386 Packages [35.5 kB] 2024-02-22T22:09:22.059 INFO:teuthology.orchestra.run.smithi049.stdout:Get:12 http://security.ubuntu.com/ubuntu focal-security/restricted Translation-en [359 kB] 2024-02-22T22:09:22.061 INFO:teuthology.orchestra.run.smithi049.stdout:Get:13 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [552 B] 2024-02-22T22:09:22.062 INFO:teuthology.orchestra.run.smithi049.stdout:Get:14 http://security.ubuntu.com/ubuntu focal-security/universe i386 Packages [645 kB] 2024-02-22T22:09:22.068 INFO:teuthology.orchestra.run.smithi049.stdout:Get:15 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [939 kB] 2024-02-22T22:09:22.085 INFO:teuthology.orchestra.run.smithi049.stdout:Get:16 http://security.ubuntu.com/ubuntu focal-security/universe Translation-en [198 kB] 2024-02-22T22:09:22.086 INFO:teuthology.orchestra.run.smithi049.stdout:Get:17 http://security.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [19.2 kB] 2024-02-22T22:09:22.087 INFO:teuthology.orchestra.run.smithi049.stdout:Get:18 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [23.9 kB] 2024-02-22T22:09:22.087 INFO:teuthology.orchestra.run.smithi049.stdout:Get:19 http://security.ubuntu.com/ubuntu focal-security/multiverse i386 Packages [7,188 B] 2024-02-22T22:09:22.104 INFO:teuthology.orchestra.run.smithi049.stdout:Get:20 http://security.ubuntu.com/ubuntu focal-security/multiverse Translation-en [5,796 B] 2024-02-22T22:09:22.104 INFO:teuthology.orchestra.run.smithi049.stdout:Get:21 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [548 B] 2024-02-22T22:09:22.310 INFO:teuthology.orchestra.run.smithi049.stdout:Get:22 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [3,109 kB] 2024-02-22T22:09:22.489 INFO:teuthology.orchestra.run.smithi049.stdout:Get:23 http://archive.ubuntu.com/ubuntu focal-updates/main Translation-en [498 kB] 2024-02-22T22:09:22.502 INFO:teuthology.orchestra.run.smithi049.stdout:Get:24 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [17.2 kB] 2024-02-22T22:09:22.502 INFO:teuthology.orchestra.run.smithi049.stdout:Get:25 http://archive.ubuntu.com/ubuntu focal-updates/restricted i386 Packages [36.8 kB] 2024-02-22T22:09:22.503 INFO:teuthology.orchestra.run.smithi049.stdout:Get:26 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [2,689 kB] 2024-02-22T22:09:22.579 INFO:teuthology.orchestra.run.smithi049.stdout:Get:27 http://archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [374 kB] 2024-02-22T22:09:22.583 INFO:teuthology.orchestra.run.smithi049.stdout:Get:28 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [552 B] 2024-02-22T22:09:22.746 INFO:teuthology.orchestra.run.smithi049.stdout:Get:29 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1,165 kB] 2024-02-22T22:09:23.388 INFO:teuthology.orchestra.run.smithi049.stdout:Get:30 http://archive.ubuntu.com/ubuntu focal-updates/universe i386 Packages [772 kB] 2024-02-22T22:09:23.425 INFO:teuthology.orchestra.run.smithi049.stdout:Get:31 http://archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [279 kB] 2024-02-22T22:09:23.438 INFO:teuthology.orchestra.run.smithi049.stdout:Get:32 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [25.7 kB] 2024-02-22T22:09:23.439 INFO:teuthology.orchestra.run.smithi049.stdout:Get:33 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [26.1 kB] 2024-02-22T22:09:23.440 INFO:teuthology.orchestra.run.smithi049.stdout:Get:34 http://archive.ubuntu.com/ubuntu focal-updates/multiverse i386 Packages [8,436 B] 2024-02-22T22:09:23.441 INFO:teuthology.orchestra.run.smithi049.stdout:Get:35 http://archive.ubuntu.com/ubuntu focal-updates/multiverse Translation-en [7,768 B] 2024-02-22T22:09:23.442 INFO:teuthology.orchestra.run.smithi049.stdout:Get:36 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [620 B] 2024-02-22T22:09:23.442 INFO:teuthology.orchestra.run.smithi049.stdout:Get:37 http://archive.ubuntu.com/ubuntu focal-backports/main i386 Packages [36.1 kB] 2024-02-22T22:09:23.443 INFO:teuthology.orchestra.run.smithi049.stdout:Get:38 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 Packages [45.7 kB] 2024-02-22T22:09:23.469 INFO:teuthology.orchestra.run.smithi049.stdout:Get:39 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 c-n-f Metadata [1,420 B] 2024-02-22T22:09:23.634 INFO:teuthology.orchestra.run.smithi049.stdout:Get:40 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [25.0 kB] 2024-02-22T22:09:23.817 INFO:teuthology.orchestra.run.smithi049.stdout:Get:41 http://archive.ubuntu.com/ubuntu focal-backports/universe i386 Packages [13.8 kB] 2024-02-22T22:09:23.839 INFO:teuthology.orchestra.run.smithi049.stdout:Get:42 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 c-n-f Metadata [880 B] 2024-02-22T22:09:25.865 INFO:teuthology.orchestra.run.smithi195.stdout:Fetched 19.1 MB in 3s (6,984 kB/s) 2024-02-22T22:09:26.073 INFO:teuthology.orchestra.run.smithi049.stdout:Fetched 19.1 MB in 3s (6,287 kB/s) 2024-02-22T22:09:27.354 INFO:teuthology.orchestra.run.smithi195.stdout:Reading package lists... 2024-02-22T22:09:27.379 DEBUG:teuthology.orchestra.run.smithi195:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic-hwe-20.04 2024-02-22T22:09:27.449 INFO:teuthology.orchestra.run.smithi195.stdout:Reading package lists... 2024-02-22T22:09:27.531 INFO:teuthology.orchestra.run.smithi049.stdout:Reading package lists... 2024-02-22T22:09:27.558 DEBUG:teuthology.orchestra.run.smithi049:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic-hwe-20.04 2024-02-22T22:09:27.629 INFO:teuthology.orchestra.run.smithi049.stdout:Reading package lists... 2024-02-22T22:09:27.648 INFO:teuthology.orchestra.run.smithi195.stdout:Building dependency tree... 2024-02-22T22:09:27.649 INFO:teuthology.orchestra.run.smithi195.stdout:Reading state information... 2024-02-22T22:09:27.819 INFO:teuthology.orchestra.run.smithi049.stdout:Building dependency tree... 2024-02-22T22:09:27.819 INFO:teuthology.orchestra.run.smithi049.stdout:Reading state information... 2024-02-22T22:09:27.820 INFO:teuthology.orchestra.run.smithi195.stdout:The following additional packages will be installed: 2024-02-22T22:09:27.820 INFO:teuthology.orchestra.run.smithi195.stdout: libdbus-glib-1-2 libevdev2 libimobiledevice6 libplist3 libupower-glib3 2024-02-22T22:09:27.820 INFO:teuthology.orchestra.run.smithi195.stdout: libusbmuxd6 linux-image-5.15.0-94-generic linux-modules-5.15.0-94-generic 2024-02-22T22:09:27.820 INFO:teuthology.orchestra.run.smithi195.stdout: linux-modules-extra-5.15.0-94-generic thermald upower usbmuxd 2024-02-22T22:09:27.821 INFO:teuthology.orchestra.run.smithi195.stdout:Suggested packages: 2024-02-22T22:09:27.821 INFO:teuthology.orchestra.run.smithi195.stdout: libusbmuxd-tools fdutils linux-doc | linux-hwe-5.15-source-5.15.0 2024-02-22T22:09:27.821 INFO:teuthology.orchestra.run.smithi195.stdout: linux-hwe-5.15-tools linux-headers-5.15.0-94-generic 2024-02-22T22:09:27.873 INFO:teuthology.orchestra.run.smithi195.stdout:The following NEW packages will be installed: 2024-02-22T22:09:27.874 INFO:teuthology.orchestra.run.smithi195.stdout: libdbus-glib-1-2 libevdev2 libimobiledevice6 libplist3 libupower-glib3 2024-02-22T22:09:27.874 INFO:teuthology.orchestra.run.smithi195.stdout: libusbmuxd6 linux-image-5.15.0-94-generic linux-image-generic-hwe-20.04 2024-02-22T22:09:27.874 INFO:teuthology.orchestra.run.smithi195.stdout: linux-modules-5.15.0-94-generic linux-modules-extra-5.15.0-94-generic 2024-02-22T22:09:27.874 INFO:teuthology.orchestra.run.smithi195.stdout: thermald upower usbmuxd 2024-02-22T22:09:27.932 INFO:teuthology.orchestra.run.smithi195.stdout:0 upgraded, 13 newly installed, 0 to remove and 289 not upgraded. 2024-02-22T22:09:27.932 INFO:teuthology.orchestra.run.smithi195.stdout:Need to get 90.9 MB of archives. 2024-02-22T22:09:27.932 INFO:teuthology.orchestra.run.smithi195.stdout:After this operation, 497 MB of additional disk space will be used. 2024-02-22T22:09:27.932 INFO:teuthology.orchestra.run.smithi195.stdout:Get:1 http://archive.ubuntu.com/ubuntu focal/main amd64 libdbus-glib-1-2 amd64 0.110-5fakssync1 [59.1 kB] 2024-02-22T22:09:27.997 INFO:teuthology.orchestra.run.smithi049.stdout:The following additional packages will be installed: 2024-02-22T22:09:27.997 INFO:teuthology.orchestra.run.smithi049.stdout: libdbus-glib-1-2 libevdev2 libimobiledevice6 libplist3 libupower-glib3 2024-02-22T22:09:27.997 INFO:teuthology.orchestra.run.smithi049.stdout: libusbmuxd6 linux-image-5.15.0-94-generic linux-modules-5.15.0-94-generic 2024-02-22T22:09:27.998 INFO:teuthology.orchestra.run.smithi049.stdout: linux-modules-extra-5.15.0-94-generic thermald upower usbmuxd 2024-02-22T22:09:27.998 INFO:teuthology.orchestra.run.smithi049.stdout:Suggested packages: 2024-02-22T22:09:27.998 INFO:teuthology.orchestra.run.smithi049.stdout: libusbmuxd-tools fdutils linux-doc | linux-hwe-5.15-source-5.15.0 2024-02-22T22:09:27.999 INFO:teuthology.orchestra.run.smithi049.stdout: linux-hwe-5.15-tools linux-headers-5.15.0-94-generic 2024-02-22T22:09:27.999 INFO:teuthology.orchestra.run.smithi195.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal/main amd64 libplist3 amd64 2.1.0-4build2 [31.6 kB] 2024-02-22T22:09:28.005 INFO:teuthology.orchestra.run.smithi195.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal/main amd64 libusbmuxd6 amd64 2.0.1-2 [19.1 kB] 2024-02-22T22:09:28.010 INFO:teuthology.orchestra.run.smithi195.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal/main amd64 libimobiledevice6 amd64 1.2.1~git20191129.9f79242-1build1 [65.2 kB] 2024-02-22T22:09:28.027 INFO:teuthology.orchestra.run.smithi195.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal/main amd64 libupower-glib3 amd64 0.99.11-1build2 [43.2 kB] 2024-02-22T22:09:28.036 INFO:teuthology.orchestra.run.smithi195.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-5.15.0-94-generic amd64 5.15.0-94.104~20.04.1 [21.0 MB] 2024-02-22T22:09:28.046 INFO:teuthology.orchestra.run.smithi049.stdout:The following NEW packages will be installed: 2024-02-22T22:09:28.046 INFO:teuthology.orchestra.run.smithi049.stdout: libdbus-glib-1-2 libevdev2 libimobiledevice6 libplist3 libupower-glib3 2024-02-22T22:09:28.046 INFO:teuthology.orchestra.run.smithi049.stdout: libusbmuxd6 linux-image-5.15.0-94-generic linux-image-generic-hwe-20.04 2024-02-22T22:09:28.047 INFO:teuthology.orchestra.run.smithi049.stdout: linux-modules-5.15.0-94-generic linux-modules-extra-5.15.0-94-generic 2024-02-22T22:09:28.047 INFO:teuthology.orchestra.run.smithi049.stdout: thermald upower usbmuxd 2024-02-22T22:09:28.112 INFO:teuthology.orchestra.run.smithi049.stdout:0 upgraded, 13 newly installed, 0 to remove and 289 not upgraded. 2024-02-22T22:09:28.112 INFO:teuthology.orchestra.run.smithi049.stdout:Need to get 90.9 MB of archives. 2024-02-22T22:09:28.112 INFO:teuthology.orchestra.run.smithi049.stdout:After this operation, 497 MB of additional disk space will be used. 2024-02-22T22:09:28.112 INFO:teuthology.orchestra.run.smithi049.stdout:Get:1 http://archive.ubuntu.com/ubuntu focal/main amd64 libdbus-glib-1-2 amd64 0.110-5fakssync1 [59.1 kB] 2024-02-22T22:09:28.227 INFO:teuthology.orchestra.run.smithi049.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal/main amd64 libplist3 amd64 2.1.0-4build2 [31.6 kB] 2024-02-22T22:09:28.248 INFO:teuthology.orchestra.run.smithi049.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal/main amd64 libusbmuxd6 amd64 2.0.1-2 [19.1 kB] 2024-02-22T22:09:28.254 INFO:teuthology.orchestra.run.smithi049.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal/main amd64 libimobiledevice6 amd64 1.2.1~git20191129.9f79242-1build1 [65.2 kB] 2024-02-22T22:09:28.308 INFO:teuthology.orchestra.run.smithi049.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal/main amd64 libupower-glib3 amd64 0.99.11-1build2 [43.2 kB] 2024-02-22T22:09:28.350 INFO:teuthology.orchestra.run.smithi049.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-5.15.0-94-generic amd64 5.15.0-94.104~20.04.1 [21.0 MB] 2024-02-22T22:09:28.505 INFO:teuthology.orchestra.run.smithi195.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-5.15.0-94-generic amd64 5.15.0-94.104~20.04.1 [11.4 MB] 2024-02-22T22:09:28.658 INFO:teuthology.orchestra.run.smithi195.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-extra-5.15.0-94-generic amd64 5.15.0-94.104~20.04.1 [57.9 MB] 2024-02-22T22:09:29.385 INFO:teuthology.orchestra.run.smithi049.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-5.15.0-94-generic amd64 5.15.0-94.104~20.04.1 [11.4 MB] 2024-02-22T22:09:29.721 INFO:teuthology.orchestra.run.smithi049.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-extra-5.15.0-94-generic amd64 5.15.0-94.104~20.04.1 [57.9 MB] 2024-02-22T22:09:30.361 INFO:teuthology.orchestra.run.smithi195.stdout:Get:9 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-generic-hwe-20.04 amd64 5.15.0.94.104~20.04.50 [2,596 B] 2024-02-22T22:09:30.361 INFO:teuthology.orchestra.run.smithi195.stdout:Get:10 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libevdev2 amd64 1.9.0+dfsg-1ubuntu0.2 [31.6 kB] 2024-02-22T22:09:30.362 INFO:teuthology.orchestra.run.smithi195.stdout:Get:11 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 thermald amd64 1.9.1-1ubuntu0.6 [233 kB] 2024-02-22T22:09:30.367 INFO:teuthology.orchestra.run.smithi195.stdout:Get:12 http://archive.ubuntu.com/ubuntu focal/main amd64 upower amd64 0.99.11-1build2 [104 kB] 2024-02-22T22:09:30.369 INFO:teuthology.orchestra.run.smithi195.stdout:Get:13 http://archive.ubuntu.com/ubuntu focal/main amd64 usbmuxd amd64 1.1.1~git20191130.9af2b12-1 [38.4 kB] 2024-02-22T22:09:31.051 INFO:teuthology.orchestra.run.smithi195.stdout:Fetched 90.9 MB in 2s (36.5 MB/s) 2024-02-22T22:09:31.281 INFO:teuthology.orchestra.run.smithi195.stdout:Selecting previously unselected package libdbus-glib-1-2:amd64. 2024-02-22T22:09:31.542 INFO:teuthology.orchestra.run.smithi049.stdout:Get:9 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-generic-hwe-20.04 amd64 5.15.0.94.104~20.04.50 [2,596 B] 2024-02-22T22:09:31.542 INFO:teuthology.orchestra.run.smithi049.stdout:Get:10 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libevdev2 amd64 1.9.0+dfsg-1ubuntu0.2 [31.6 kB] 2024-02-22T22:09:31.543 INFO:teuthology.orchestra.run.smithi049.stdout:Get:11 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 thermald amd64 1.9.1-1ubuntu0.6 [233 kB] 2024-02-22T22:09:31.549 INFO:teuthology.orchestra.run.smithi049.stdout:Get:12 http://archive.ubuntu.com/ubuntu focal/main amd64 upower amd64 0.99.11-1build2 [104 kB] 2024-02-22T22:09:31.551 INFO:teuthology.orchestra.run.smithi049.stdout:Get:13 http://archive.ubuntu.com/ubuntu focal/main amd64 usbmuxd amd64 1.1.1~git20191130.9af2b12-1 [38.4 kB] 2024-02-22T22:09:32.262 INFO:teuthology.orchestra.run.smithi049.stdout:Fetched 90.9 MB in 3s (26.0 MB/s) 2024-02-22T22:09:32.439 INFO:teuthology.orchestra.run.smithi049.stdout:Selecting previously unselected package libdbus-glib-1-2:amd64. 2024-02-22T22:09:33.000 INFO:teuthology.orchestra.run.smithi195.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 104373 files and directories currently installed.) 2024-02-22T22:09:33.005 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../00-libdbus-glib-1-2_0.110-5fakssync1_amd64.deb ... 2024-02-22T22:09:33.137 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking libdbus-glib-1-2:amd64 (0.110-5fakssync1) ... 2024-02-22T22:09:33.515 INFO:teuthology.orchestra.run.smithi195.stdout:Selecting previously unselected package libplist3:amd64. 2024-02-22T22:09:33.529 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../01-libplist3_2.1.0-4build2_amd64.deb ... 2024-02-22T22:09:33.565 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking libplist3:amd64 (2.1.0-4build2) ... 2024-02-22T22:09:33.918 INFO:teuthology.orchestra.run.smithi195.stdout:Selecting previously unselected package libusbmuxd6:amd64. 2024-02-22T22:09:33.932 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../02-libusbmuxd6_2.0.1-2_amd64.deb ... 2024-02-22T22:09:33.976 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking libusbmuxd6:amd64 (2.0.1-2) ... 2024-02-22T22:09:34.165 INFO:teuthology.orchestra.run.smithi049.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 104373 files and directories currently installed.) 2024-02-22T22:09:34.170 INFO:teuthology.orchestra.run.smithi049.stdout:Preparing to unpack .../00-libdbus-glib-1-2_0.110-5fakssync1_amd64.deb ... 2024-02-22T22:09:34.237 INFO:teuthology.orchestra.run.smithi195.stdout:Selecting previously unselected package libimobiledevice6:amd64. 2024-02-22T22:09:34.253 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../03-libimobiledevice6_1.2.1~git20191129.9f79242-1build1_amd64.deb ... 2024-02-22T22:09:34.287 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking libimobiledevice6:amd64 (1.2.1~git20191129.9f79242-1build1) ... 2024-02-22T22:09:34.336 INFO:teuthology.orchestra.run.smithi049.stdout:Unpacking libdbus-glib-1-2:amd64 (0.110-5fakssync1) ... 2024-02-22T22:09:34.624 INFO:teuthology.orchestra.run.smithi195.stdout:Selecting previously unselected package libupower-glib3:amd64. 2024-02-22T22:09:34.639 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../04-libupower-glib3_0.99.11-1build2_amd64.deb ... 2024-02-22T22:09:34.681 INFO:teuthology.orchestra.run.smithi049.stdout:Selecting previously unselected package libplist3:amd64. 2024-02-22T22:09:34.682 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking libupower-glib3:amd64 (0.99.11-1build2) ... 2024-02-22T22:09:34.696 INFO:teuthology.orchestra.run.smithi049.stdout:Preparing to unpack .../01-libplist3_2.1.0-4build2_amd64.deb ... 2024-02-22T22:09:34.739 INFO:teuthology.orchestra.run.smithi049.stdout:Unpacking libplist3:amd64 (2.1.0-4build2) ... 2024-02-22T22:09:35.027 INFO:teuthology.orchestra.run.smithi195.stdout:Selecting previously unselected package linux-modules-5.15.0-94-generic. 2024-02-22T22:09:35.040 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../05-linux-modules-5.15.0-94-generic_5.15.0-94.104~20.04.1_amd64.deb ... 2024-02-22T22:09:35.085 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking linux-modules-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-22T22:09:35.100 INFO:teuthology.orchestra.run.smithi049.stdout:Selecting previously unselected package libusbmuxd6:amd64. 2024-02-22T22:09:35.114 INFO:teuthology.orchestra.run.smithi049.stdout:Preparing to unpack .../02-libusbmuxd6_2.0.1-2_amd64.deb ... 2024-02-22T22:09:35.158 INFO:teuthology.orchestra.run.smithi049.stdout:Unpacking libusbmuxd6:amd64 (2.0.1-2) ... 2024-02-22T22:09:35.512 INFO:teuthology.orchestra.run.smithi049.stdout:Selecting previously unselected package libimobiledevice6:amd64. 2024-02-22T22:09:35.526 INFO:teuthology.orchestra.run.smithi049.stdout:Preparing to unpack .../03-libimobiledevice6_1.2.1~git20191129.9f79242-1build1_amd64.deb ... 2024-02-22T22:09:35.570 INFO:teuthology.orchestra.run.smithi049.stdout:Unpacking libimobiledevice6:amd64 (1.2.1~git20191129.9f79242-1build1) ... 2024-02-22T22:09:35.856 INFO:teuthology.orchestra.run.smithi049.stdout:Selecting previously unselected package libupower-glib3:amd64. 2024-02-22T22:09:35.869 INFO:teuthology.orchestra.run.smithi049.stdout:Preparing to unpack .../04-libupower-glib3_0.99.11-1build2_amd64.deb ... 2024-02-22T22:09:35.897 INFO:teuthology.orchestra.run.smithi049.stdout:Unpacking libupower-glib3:amd64 (0.99.11-1build2) ... 2024-02-22T22:09:36.225 INFO:teuthology.orchestra.run.smithi049.stdout:Selecting previously unselected package linux-modules-5.15.0-94-generic. 2024-02-22T22:09:36.240 INFO:teuthology.orchestra.run.smithi049.stdout:Preparing to unpack .../05-linux-modules-5.15.0-94-generic_5.15.0-94.104~20.04.1_amd64.deb ... 2024-02-22T22:09:36.283 INFO:teuthology.orchestra.run.smithi049.stdout:Unpacking linux-modules-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-22T22:09:37.620 INFO:teuthology.orchestra.run.smithi195.stdout:Selecting previously unselected package linux-image-5.15.0-94-generic. 2024-02-22T22:09:37.633 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../06-linux-image-5.15.0-94-generic_5.15.0-94.104~20.04.1_amd64.deb ... 2024-02-22T22:09:37.731 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking linux-image-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-22T22:09:38.265 INFO:teuthology.orchestra.run.smithi195.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-94-generic. 2024-02-22T22:09:38.279 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../07-linux-modules-extra-5.15.0-94-generic_5.15.0-94.104~20.04.1_amd64.deb ... 2024-02-22T22:09:38.323 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking linux-modules-extra-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-22T22:09:38.851 INFO:teuthology.orchestra.run.smithi049.stdout:Selecting previously unselected package linux-image-5.15.0-94-generic. 2024-02-22T22:09:38.866 INFO:teuthology.orchestra.run.smithi049.stdout:Preparing to unpack .../06-linux-image-5.15.0-94-generic_5.15.0-94.104~20.04.1_amd64.deb ... 2024-02-22T22:09:38.963 INFO:teuthology.orchestra.run.smithi049.stdout:Unpacking linux-image-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-22T22:09:39.488 INFO:teuthology.orchestra.run.smithi049.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-94-generic. 2024-02-22T22:09:39.502 INFO:teuthology.orchestra.run.smithi049.stdout:Preparing to unpack .../07-linux-modules-extra-5.15.0-94-generic_5.15.0-94.104~20.04.1_amd64.deb ... 2024-02-22T22:09:39.546 INFO:teuthology.orchestra.run.smithi049.stdout:Unpacking linux-modules-extra-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-22T22:09:44.999 INFO:teuthology.orchestra.run.smithi195.stdout:Selecting previously unselected package linux-image-generic-hwe-20.04. 2024-02-22T22:09:45.015 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../08-linux-image-generic-hwe-20.04_5.15.0.94.104~20.04.50_amd64.deb ... 2024-02-22T22:09:45.057 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking linux-image-generic-hwe-20.04 (5.15.0.94.104~20.04.50) ... 2024-02-22T22:09:45.418 INFO:teuthology.orchestra.run.smithi195.stdout:Selecting previously unselected package libevdev2:amd64. 2024-02-22T22:09:45.435 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../09-libevdev2_1.9.0+dfsg-1ubuntu0.2_amd64.deb ... 2024-02-22T22:09:45.476 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.2) ... 2024-02-22T22:09:45.838 INFO:teuthology.orchestra.run.smithi195.stdout:Selecting previously unselected package thermald. 2024-02-22T22:09:45.853 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../10-thermald_1.9.1-1ubuntu0.6_amd64.deb ... 2024-02-22T22:09:45.921 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking thermald (1.9.1-1ubuntu0.6) ... 2024-02-22T22:09:46.468 INFO:teuthology.orchestra.run.smithi195.stdout:Selecting previously unselected package upower. 2024-02-22T22:09:46.481 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../11-upower_0.99.11-1build2_amd64.deb ... 2024-02-22T22:09:46.531 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking upower (0.99.11-1build2) ... 2024-02-22T22:09:46.612 INFO:teuthology.orchestra.run.smithi049.stdout:Selecting previously unselected package linux-image-generic-hwe-20.04. 2024-02-22T22:09:46.630 INFO:teuthology.orchestra.run.smithi049.stdout:Preparing to unpack .../08-linux-image-generic-hwe-20.04_5.15.0.94.104~20.04.50_amd64.deb ... 2024-02-22T22:09:46.670 INFO:teuthology.orchestra.run.smithi049.stdout:Unpacking linux-image-generic-hwe-20.04 (5.15.0.94.104~20.04.50) ... 2024-02-22T22:09:46.955 INFO:teuthology.orchestra.run.smithi195.stdout:Selecting previously unselected package usbmuxd. 2024-02-22T22:09:46.970 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../12-usbmuxd_1.1.1~git20191130.9af2b12-1_amd64.deb ... 2024-02-22T22:09:47.013 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking usbmuxd (1.1.1~git20191130.9af2b12-1) ... 2024-02-22T22:09:47.015 INFO:teuthology.orchestra.run.smithi049.stdout:Selecting previously unselected package libevdev2:amd64. 2024-02-22T22:09:47.030 INFO:teuthology.orchestra.run.smithi049.stdout:Preparing to unpack .../09-libevdev2_1.9.0+dfsg-1ubuntu0.2_amd64.deb ... 2024-02-22T22:09:47.073 INFO:teuthology.orchestra.run.smithi049.stdout:Unpacking libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.2) ... 2024-02-22T22:09:47.313 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up libplist3:amd64 (2.1.0-4build2) ... 2024-02-22T22:09:47.460 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up libdbus-glib-1-2:amd64 (0.110-5fakssync1) ... 2024-02-22T22:09:47.476 INFO:teuthology.orchestra.run.smithi049.stdout:Selecting previously unselected package thermald. 2024-02-22T22:09:47.489 INFO:teuthology.orchestra.run.smithi049.stdout:Preparing to unpack .../10-thermald_1.9.1-1ubuntu0.6_amd64.deb ... 2024-02-22T22:09:47.534 INFO:teuthology.orchestra.run.smithi049.stdout:Unpacking thermald (1.9.1-1ubuntu0.6) ... 2024-02-22T22:09:47.586 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up libusbmuxd6:amd64 (2.0.1-2) ... 2024-02-22T22:09:47.712 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up libupower-glib3:amd64 (0.99.11-1build2) ... 2024-02-22T22:09:47.838 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up libimobiledevice6:amd64 (1.2.1~git20191129.9f79242-1build1) ... 2024-02-22T22:09:47.998 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.2) ... 2024-02-22T22:09:48.124 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up upower (0.99.11-1build2) ... 2024-02-22T22:09:48.239 INFO:teuthology.orchestra.run.smithi049.stdout:Selecting previously unselected package upower. 2024-02-22T22:09:48.256 INFO:teuthology.orchestra.run.smithi049.stdout:Preparing to unpack .../11-upower_0.99.11-1build2_amd64.deb ... 2024-02-22T22:09:48.347 INFO:teuthology.orchestra.run.smithi049.stdout:Unpacking upower (0.99.11-1build2) ... 2024-02-22T22:09:48.712 INFO:teuthology.orchestra.run.smithi195.stdout:upower.service is a disabled or a static unit, not starting it. 2024-02-22T22:09:48.769 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up usbmuxd (1.1.1~git20191130.9af2b12-1) ... 2024-02-22T22:09:48.793 INFO:teuthology.orchestra.run.smithi049.stdout:Selecting previously unselected package usbmuxd. 2024-02-22T22:09:48.807 INFO:teuthology.orchestra.run.smithi049.stdout:Preparing to unpack .../12-usbmuxd_1.1.1~git20191130.9af2b12-1_amd64.deb ... 2024-02-22T22:09:48.852 INFO:teuthology.orchestra.run.smithi049.stdout:Unpacking usbmuxd (1.1.1~git20191130.9af2b12-1) ... 2024-02-22T22:09:48.932 INFO:teuthology.orchestra.run.smithi195.stdout:Warning: The home dir /var/lib/usbmux you specified can't be accessed: No such file or directory 2024-02-22T22:09:48.945 INFO:teuthology.orchestra.run.smithi195.stdout:Adding system user `usbmux' (UID 114) ... 2024-02-22T22:09:48.945 INFO:teuthology.orchestra.run.smithi195.stdout:Adding new user `usbmux' (UID 114) with group `plugdev' ... 2024-02-22T22:09:49.168 INFO:teuthology.orchestra.run.smithi049.stdout:Setting up libplist3:amd64 (2.1.0-4build2) ... 2024-02-22T22:09:49.289 INFO:teuthology.orchestra.run.smithi049.stdout:Setting up libdbus-glib-1-2:amd64 (0.110-5fakssync1) ... 2024-02-22T22:09:49.440 INFO:teuthology.orchestra.run.smithi049.stdout:Setting up libusbmuxd6:amd64 (2.0.1-2) ... 2024-02-22T22:09:49.487 INFO:teuthology.orchestra.run.smithi195.stdout:Not creating home directory `/var/lib/usbmux'. 2024-02-22T22:09:49.566 INFO:teuthology.orchestra.run.smithi049.stdout:Setting up libupower-glib3:amd64 (0.99.11-1build2) ... 2024-02-22T22:09:49.698 INFO:teuthology.orchestra.run.smithi195.stdout:usbmuxd.service is a disabled or a static unit, not starting it. 2024-02-22T22:09:49.713 INFO:teuthology.orchestra.run.smithi049.stdout:Setting up libimobiledevice6:amd64 (1.2.1~git20191129.9f79242-1build1) ... 2024-02-22T22:09:49.749 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up thermald (1.9.1-1ubuntu0.6) ... 2024-02-22T22:09:49.844 INFO:teuthology.orchestra.run.smithi049.stdout:Setting up libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.2) ... 2024-02-22T22:09:49.978 INFO:teuthology.orchestra.run.smithi049.stdout:Setting up upower (0.99.11-1build2) ... 2024-02-22T22:09:50.057 INFO:teuthology.orchestra.run.smithi195.stdout:Created symlink /etc/systemd/system/dbus-org.freedesktop.thermald.service -> /lib/systemd/system/thermald.service. 2024-02-22T22:09:50.057 INFO:teuthology.orchestra.run.smithi195.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/thermald.service -> /lib/systemd/system/thermald.service. 2024-02-22T22:09:50.540 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up linux-image-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-22T22:09:50.544 INFO:teuthology.orchestra.run.smithi049.stdout:upower.service is a disabled or a static unit, not starting it. 2024-02-22T22:09:50.599 INFO:teuthology.orchestra.run.smithi049.stdout:Setting up usbmuxd (1.1.1~git20191130.9af2b12-1) ... 2024-02-22T22:09:50.814 INFO:teuthology.orchestra.run.smithi049.stdout:Warning: The home dir /var/lib/usbmux you specified can't be accessed: No such file or directory 2024-02-22T22:09:50.831 INFO:teuthology.orchestra.run.smithi049.stdout:Adding system user `usbmux' (UID 114) ... 2024-02-22T22:09:50.831 INFO:teuthology.orchestra.run.smithi049.stdout:Adding new user `usbmux' (UID 114) with group `plugdev' ... 2024-02-22T22:09:51.357 INFO:teuthology.orchestra.run.smithi049.stdout:Not creating home directory `/var/lib/usbmux'. 2024-02-22T22:09:51.583 INFO:teuthology.orchestra.run.smithi049.stdout:usbmuxd.service is a disabled or a static unit, not starting it. 2024-02-22T22:09:51.629 INFO:teuthology.orchestra.run.smithi049.stdout:Setting up thermald (1.9.1-1ubuntu0.6) ... 2024-02-22T22:09:51.868 INFO:teuthology.orchestra.run.smithi195.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-94-generic 2024-02-22T22:09:51.868 INFO:teuthology.orchestra.run.smithi195.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-94-generic 2024-02-22T22:09:51.943 INFO:teuthology.orchestra.run.smithi049.stdout:Created symlink /etc/systemd/system/dbus-org.freedesktop.thermald.service -> /lib/systemd/system/thermald.service. 2024-02-22T22:09:51.943 INFO:teuthology.orchestra.run.smithi049.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/thermald.service -> /lib/systemd/system/thermald.service. 2024-02-22T22:09:52.073 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up linux-modules-extra-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-22T22:09:52.425 INFO:teuthology.orchestra.run.smithi049.stdout:Setting up linux-image-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-22T22:09:53.449 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up linux-image-generic-hwe-20.04 (5.15.0.94.104~20.04.50) ... 2024-02-22T22:09:53.600 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up linux-modules-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-22T22:09:53.836 INFO:teuthology.orchestra.run.smithi049.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-94-generic 2024-02-22T22:09:53.836 INFO:teuthology.orchestra.run.smithi049.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-94-generic 2024-02-22T22:09:54.010 INFO:teuthology.orchestra.run.smithi049.stdout:Setting up linux-modules-extra-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-22T22:09:54.985 INFO:teuthology.orchestra.run.smithi195.stdout:Processing triggers for libc-bin (2.31-0ubuntu9.9) ... 2024-02-22T22:09:55.290 INFO:teuthology.orchestra.run.smithi195.stdout:Processing triggers for man-db (2.9.1-1) ... 2024-02-22T22:09:55.470 INFO:teuthology.orchestra.run.smithi049.stdout:Setting up linux-image-generic-hwe-20.04 (5.15.0.94.104~20.04.50) ... 2024-02-22T22:09:55.596 INFO:teuthology.orchestra.run.smithi049.stdout:Setting up linux-modules-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-22T22:09:56.077 INFO:teuthology.orchestra.run.smithi195.stdout:Processing triggers for dbus (1.12.16-2ubuntu2.2) ... 2024-02-22T22:09:56.210 INFO:teuthology.orchestra.run.smithi195.stdout:Processing triggers for linux-image-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-22T22:09:56.273 INFO:teuthology.orchestra.run.smithi195.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-02-22T22:09:56.273 INFO:teuthology.orchestra.run.smithi195.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-94-generic 2024-02-22T22:09:57.005 INFO:teuthology.orchestra.run.smithi049.stdout:Processing triggers for libc-bin (2.31-0ubuntu9.9) ... 2024-02-22T22:09:57.311 INFO:teuthology.orchestra.run.smithi049.stdout:Processing triggers for man-db (2.9.1-1) ... 2024-02-22T22:09:58.105 INFO:teuthology.orchestra.run.smithi049.stdout:Processing triggers for dbus (1.12.16-2ubuntu2.2) ... 2024-02-22T22:09:58.214 INFO:teuthology.orchestra.run.smithi049.stdout:Processing triggers for linux-image-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-22T22:09:58.337 INFO:teuthology.orchestra.run.smithi049.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-02-22T22:09:58.337 INFO:teuthology.orchestra.run.smithi049.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-94-generic 2024-02-22T22:10:21.685 INFO:teuthology.orchestra.run.smithi195.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-02-22T22:10:21.686 INFO:teuthology.orchestra.run.smithi195.stdout:Sourcing file `/etc/default/grub' 2024-02-22T22:10:21.692 INFO:teuthology.orchestra.run.smithi195.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-02-22T22:10:21.711 INFO:teuthology.orchestra.run.smithi195.stdout:Generating grub configuration file ... 2024-02-22T22:10:22.096 INFO:teuthology.orchestra.run.smithi195.stdout:Found linux image: /boot/vmlinuz-5.15.0-94-generic 2024-02-22T22:10:22.122 INFO:teuthology.orchestra.run.smithi195.stdout:Found initrd image: /boot/initrd.img-5.15.0-94-generic 2024-02-22T22:10:22.555 INFO:teuthology.orchestra.run.smithi195.stdout:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-02-22T22:10:22.567 INFO:teuthology.orchestra.run.smithi195.stdout:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-02-22T22:10:24.093 INFO:teuthology.orchestra.run.smithi049.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-02-22T22:10:24.093 INFO:teuthology.orchestra.run.smithi049.stdout:Sourcing file `/etc/default/grub' 2024-02-22T22:10:24.110 INFO:teuthology.orchestra.run.smithi049.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-02-22T22:10:24.150 INFO:teuthology.orchestra.run.smithi049.stdout:Generating grub configuration file ... 2024-02-22T22:10:24.484 INFO:teuthology.orchestra.run.smithi049.stdout:Found linux image: /boot/vmlinuz-5.15.0-94-generic 2024-02-22T22:10:24.511 INFO:teuthology.orchestra.run.smithi049.stdout:Found initrd image: /boot/initrd.img-5.15.0-94-generic 2024-02-22T22:10:24.932 INFO:teuthology.orchestra.run.smithi049.stdout:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-02-22T22:10:24.943 INFO:teuthology.orchestra.run.smithi049.stdout:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-02-22T22:10:25.150 INFO:teuthology.orchestra.run.smithi195.stdout:done 2024-02-22T22:10:25.565 DEBUG:teuthology.orchestra.run.smithi195:> dpkg -s linux-image-generic-hwe-20.04 2024-02-22T22:10:25.630 INFO:teuthology.orchestra.run.smithi195.stdout:Package: linux-image-generic-hwe-20.04 2024-02-22T22:10:25.630 INFO:teuthology.orchestra.run.smithi195.stdout:Status: install ok installed 2024-02-22T22:10:25.631 INFO:teuthology.orchestra.run.smithi195.stdout:Priority: optional 2024-02-22T22:10:25.631 INFO:teuthology.orchestra.run.smithi195.stdout:Section: kernel 2024-02-22T22:10:25.631 INFO:teuthology.orchestra.run.smithi195.stdout:Installed-Size: 20 2024-02-22T22:10:25.631 INFO:teuthology.orchestra.run.smithi195.stdout:Maintainer: Ubuntu Kernel Team 2024-02-22T22:10:25.631 INFO:teuthology.orchestra.run.smithi195.stdout:Architecture: amd64 2024-02-22T22:10:25.631 INFO:teuthology.orchestra.run.smithi195.stdout:Source: linux-meta-hwe-5.15 2024-02-22T22:10:25.631 INFO:teuthology.orchestra.run.smithi195.stdout:Version: 5.15.0.94.104~20.04.50 2024-02-22T22:10:25.631 INFO:teuthology.orchestra.run.smithi195.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.2), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-94), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.2) 2024-02-22T22:10:25.631 INFO:teuthology.orchestra.run.smithi195.stdout:Depends: linux-image-5.15.0-94-generic, linux-modules-extra-5.15.0-94-generic, linux-firmware, intel-microcode, amd64-microcode 2024-02-22T22:10:25.631 INFO:teuthology.orchestra.run.smithi195.stdout:Recommends: thermald 2024-02-22T22:10:25.631 INFO:teuthology.orchestra.run.smithi195.stdout:Description: Generic Linux kernel image 2024-02-22T22:10:25.631 INFO:teuthology.orchestra.run.smithi195.stdout: This package will always depend on the latest generic kernel image 2024-02-22T22:10:25.631 INFO:teuthology.orchestra.run.smithi195.stdout: available. 2024-02-22T22:10:25.632 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.4.0-124-generic Expected: 5.15.0-94-generic 2024-02-22T22:10:25.632 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-02-22T22:10:25.632 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-02-22T22:10:25.632 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-02-22T22:10:25.632 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi195.front.sepia.ceph.com, path=None, version=distro) 2024-02-22T22:10:25.632 DEBUG:teuthology.orchestra.run.smithi195:> sudo apt-get clean 2024-02-22T22:10:25.716 DEBUG:teuthology.orchestra.run.smithi195:> sudo apt-get update 2024-02-22T22:10:25.852 INFO:teuthology.orchestra.run.smithi195.stdout:Hit:1 http://archive.ubuntu.com/ubuntu focal InRelease 2024-02-22T22:10:25.864 INFO:teuthology.orchestra.run.smithi195.stdout:Hit:2 http://archive.ubuntu.com/ubuntu focal-updates InRelease 2024-02-22T22:10:25.888 INFO:teuthology.orchestra.run.smithi195.stdout:Hit:3 http://archive.ubuntu.com/ubuntu focal-backports InRelease 2024-02-22T22:10:25.986 INFO:teuthology.orchestra.run.smithi195.stdout:Hit:4 http://security.ubuntu.com/ubuntu focal-security InRelease 2024-02-22T22:10:27.610 INFO:teuthology.orchestra.run.smithi049.stdout:done 2024-02-22T22:10:27.650 INFO:teuthology.orchestra.run.smithi195.stdout:Reading package lists... 2024-02-22T22:10:27.675 DEBUG:teuthology.orchestra.run.smithi195:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic-hwe-20.04 2024-02-22T22:10:27.744 INFO:teuthology.orchestra.run.smithi195.stdout:Reading package lists... 2024-02-22T22:10:27.949 INFO:teuthology.orchestra.run.smithi195.stdout:Building dependency tree... 2024-02-22T22:10:27.950 INFO:teuthology.orchestra.run.smithi195.stdout:Reading state information... 2024-02-22T22:10:28.120 DEBUG:teuthology.orchestra.run.smithi049:> dpkg -s linux-image-generic-hwe-20.04 2024-02-22T22:10:28.164 INFO:teuthology.orchestra.run.smithi049.stdout:Package: linux-image-generic-hwe-20.04 2024-02-22T22:10:28.164 INFO:teuthology.orchestra.run.smithi049.stdout:Status: install ok installed 2024-02-22T22:10:28.164 INFO:teuthology.orchestra.run.smithi049.stdout:Priority: optional 2024-02-22T22:10:28.164 INFO:teuthology.orchestra.run.smithi049.stdout:Section: kernel 2024-02-22T22:10:28.164 INFO:teuthology.orchestra.run.smithi049.stdout:Installed-Size: 20 2024-02-22T22:10:28.164 INFO:teuthology.orchestra.run.smithi049.stdout:Maintainer: Ubuntu Kernel Team 2024-02-22T22:10:28.164 INFO:teuthology.orchestra.run.smithi049.stdout:Architecture: amd64 2024-02-22T22:10:28.164 INFO:teuthology.orchestra.run.smithi049.stdout:Source: linux-meta-hwe-5.15 2024-02-22T22:10:28.164 INFO:teuthology.orchestra.run.smithi049.stdout:Version: 5.15.0.94.104~20.04.50 2024-02-22T22:10:28.165 INFO:teuthology.orchestra.run.smithi049.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.2), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-94), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.2) 2024-02-22T22:10:28.165 INFO:teuthology.orchestra.run.smithi049.stdout:Depends: linux-image-5.15.0-94-generic, linux-modules-extra-5.15.0-94-generic, linux-firmware, intel-microcode, amd64-microcode 2024-02-22T22:10:28.165 INFO:teuthology.orchestra.run.smithi049.stdout:Recommends: thermald 2024-02-22T22:10:28.165 INFO:teuthology.orchestra.run.smithi049.stdout:Description: Generic Linux kernel image 2024-02-22T22:10:28.165 INFO:teuthology.orchestra.run.smithi049.stdout: This package will always depend on the latest generic kernel image 2024-02-22T22:10:28.165 INFO:teuthology.orchestra.run.smithi049.stdout: available. 2024-02-22T22:10:28.165 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.4.0-124-generic Expected: 5.15.0-94-generic 2024-02-22T22:10:28.165 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-02-22T22:10:28.165 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-02-22T22:10:28.165 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-02-22T22:10:28.165 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi049.front.sepia.ceph.com, path=None, version=distro) 2024-02-22T22:10:28.165 DEBUG:teuthology.orchestra.run.smithi049:> sudo apt-get clean 2024-02-22T22:10:28.171 INFO:teuthology.orchestra.run.smithi195.stdout:linux-image-generic-hwe-20.04 is already the newest version (5.15.0.94.104~20.04.50). 2024-02-22T22:10:28.171 INFO:teuthology.orchestra.run.smithi195.stdout:0 upgraded, 0 newly installed, 0 to remove and 289 not upgraded. 2024-02-22T22:10:28.173 DEBUG:teuthology.orchestra.run.smithi195:> dpkg -s linux-image-generic-hwe-20.04 2024-02-22T22:10:28.193 INFO:teuthology.orchestra.run.smithi195.stdout:Package: linux-image-generic-hwe-20.04 2024-02-22T22:10:28.193 INFO:teuthology.orchestra.run.smithi195.stdout:Status: install ok installed 2024-02-22T22:10:28.193 INFO:teuthology.orchestra.run.smithi195.stdout:Priority: optional 2024-02-22T22:10:28.193 INFO:teuthology.orchestra.run.smithi195.stdout:Section: kernel 2024-02-22T22:10:28.193 INFO:teuthology.orchestra.run.smithi195.stdout:Installed-Size: 20 2024-02-22T22:10:28.193 INFO:teuthology.orchestra.run.smithi195.stdout:Maintainer: Ubuntu Kernel Team 2024-02-22T22:10:28.193 INFO:teuthology.orchestra.run.smithi195.stdout:Architecture: amd64 2024-02-22T22:10:28.193 INFO:teuthology.orchestra.run.smithi195.stdout:Source: linux-meta-hwe-5.15 2024-02-22T22:10:28.193 INFO:teuthology.orchestra.run.smithi195.stdout:Version: 5.15.0.94.104~20.04.50 2024-02-22T22:10:28.193 INFO:teuthology.orchestra.run.smithi195.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.2), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-94), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.2) 2024-02-22T22:10:28.193 INFO:teuthology.orchestra.run.smithi195.stdout:Depends: linux-image-5.15.0-94-generic, linux-modules-extra-5.15.0-94-generic, linux-firmware, intel-microcode, amd64-microcode 2024-02-22T22:10:28.194 INFO:teuthology.orchestra.run.smithi195.stdout:Recommends: thermald 2024-02-22T22:10:28.194 INFO:teuthology.orchestra.run.smithi195.stdout:Description: Generic Linux kernel image 2024-02-22T22:10:28.194 INFO:teuthology.orchestra.run.smithi195.stdout: This package will always depend on the latest generic kernel image 2024-02-22T22:10:28.194 INFO:teuthology.orchestra.run.smithi195.stdout: available. 2024-02-22T22:10:28.194 DEBUG:teuthology.orchestra.run.smithi195:> mktemp 2024-02-22T22:10:28.199 INFO:teuthology.orchestra.run.smithi195.stdout:/tmp/tmp.g8MO9Z2zlp 2024-02-22T22:10:28.199 DEBUG:teuthology.orchestra.run.smithi195:> sudo cp /boot/grub/grub.cfg /tmp/tmp.g8MO9Z2zlp 2024-02-22T22:10:28.207 DEBUG:teuthology.orchestra.run.smithi195:> sudo chmod 0666 /tmp/tmp.g8MO9Z2zlp 2024-02-22T22:10:28.237 DEBUG:teuthology.orchestra.run.smithi049:> sudo apt-get update 2024-02-22T22:10:28.296 DEBUG:teuthology.orchestra.remote:smithi195:/tmp/tmp.g8MO9Z2zlp is 9KB 2024-02-22T22:10:28.310 DEBUG:teuthology.orchestra.run.smithi195:> rm -fr /tmp/tmp.g8MO9Z2zlp 2024-02-22T22:10:28.316 DEBUG:teuthology.orchestra.run.smithi195:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-02-22T22:10:28.371 INFO:teuthology.orchestra.run.smithi049.stdout:Hit:1 http://archive.ubuntu.com/ubuntu focal InRelease 2024-02-22T22:10:28.376 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-02-22T22:10:28.376 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-02-22T22:10:28.376 DEBUG:teuthology.orchestra.run.smithi195:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-02-22T22:10:28.380 INFO:teuthology.orchestra.run.smithi049.stdout:Hit:2 http://archive.ubuntu.com/ubuntu focal-updates InRelease 2024-02-22T22:10:28.401 INFO:teuthology.orchestra.run.smithi049.stdout:Hit:3 http://archive.ubuntu.com/ubuntu focal-backports InRelease 2024-02-22T22:10:28.407 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-94-generic 2024-02-22T22:10:28.407 DEBUG:teuthology.orchestra.run.smithi195:> sudo update-grub 2024-02-22T22:10:28.484 INFO:teuthology.orchestra.run.smithi049.stdout:Hit:4 http://security.ubuntu.com/ubuntu focal-security InRelease 2024-02-22T22:10:29.753 INFO:teuthology.orchestra.run.smithi195.stderr:Sourcing file `/etc/default/grub' 2024-02-22T22:10:29.758 INFO:teuthology.orchestra.run.smithi195.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-02-22T22:10:29.772 INFO:teuthology.orchestra.run.smithi195.stderr:Generating grub configuration file ... 2024-02-22T22:10:30.033 INFO:teuthology.orchestra.run.smithi195.stderr:Found linux image: /boot/vmlinuz-5.15.0-94-generic 2024-02-22T22:10:30.044 INFO:teuthology.orchestra.run.smithi195.stderr:Found initrd image: /boot/initrd.img-5.15.0-94-generic 2024-02-22T22:10:30.196 INFO:teuthology.orchestra.run.smithi049.stdout:Reading package lists... 2024-02-22T22:10:30.223 DEBUG:teuthology.orchestra.run.smithi049:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic-hwe-20.04 2024-02-22T22:10:30.294 INFO:teuthology.orchestra.run.smithi049.stdout:Reading package lists... 2024-02-22T22:10:30.428 INFO:teuthology.orchestra.run.smithi195.stderr:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-02-22T22:10:30.440 INFO:teuthology.orchestra.run.smithi195.stderr:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-02-22T22:10:30.483 INFO:teuthology.orchestra.run.smithi049.stdout:Building dependency tree... 2024-02-22T22:10:30.484 INFO:teuthology.orchestra.run.smithi049.stdout:Reading state information... 2024-02-22T22:10:30.707 INFO:teuthology.orchestra.run.smithi049.stdout:linux-image-generic-hwe-20.04 is already the newest version (5.15.0.94.104~20.04.50). 2024-02-22T22:10:30.707 INFO:teuthology.orchestra.run.smithi049.stdout:0 upgraded, 0 newly installed, 0 to remove and 289 not upgraded. 2024-02-22T22:10:30.709 DEBUG:teuthology.orchestra.run.smithi049:> dpkg -s linux-image-generic-hwe-20.04 2024-02-22T22:10:30.732 INFO:teuthology.orchestra.run.smithi049.stdout:Package: linux-image-generic-hwe-20.04 2024-02-22T22:10:30.732 INFO:teuthology.orchestra.run.smithi049.stdout:Status: install ok installed 2024-02-22T22:10:30.732 INFO:teuthology.orchestra.run.smithi049.stdout:Priority: optional 2024-02-22T22:10:30.732 INFO:teuthology.orchestra.run.smithi049.stdout:Section: kernel 2024-02-22T22:10:30.732 INFO:teuthology.orchestra.run.smithi049.stdout:Installed-Size: 20 2024-02-22T22:10:30.732 INFO:teuthology.orchestra.run.smithi049.stdout:Maintainer: Ubuntu Kernel Team 2024-02-22T22:10:30.732 INFO:teuthology.orchestra.run.smithi049.stdout:Architecture: amd64 2024-02-22T22:10:30.732 INFO:teuthology.orchestra.run.smithi049.stdout:Source: linux-meta-hwe-5.15 2024-02-22T22:10:30.732 INFO:teuthology.orchestra.run.smithi049.stdout:Version: 5.15.0.94.104~20.04.50 2024-02-22T22:10:30.732 INFO:teuthology.orchestra.run.smithi049.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.2), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-94), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.2) 2024-02-22T22:10:30.732 INFO:teuthology.orchestra.run.smithi049.stdout:Depends: linux-image-5.15.0-94-generic, linux-modules-extra-5.15.0-94-generic, linux-firmware, intel-microcode, amd64-microcode 2024-02-22T22:10:30.732 INFO:teuthology.orchestra.run.smithi049.stdout:Recommends: thermald 2024-02-22T22:10:30.732 INFO:teuthology.orchestra.run.smithi049.stdout:Description: Generic Linux kernel image 2024-02-22T22:10:30.732 INFO:teuthology.orchestra.run.smithi049.stdout: This package will always depend on the latest generic kernel image 2024-02-22T22:10:30.733 INFO:teuthology.orchestra.run.smithi049.stdout: available. 2024-02-22T22:10:30.733 DEBUG:teuthology.orchestra.run.smithi049:> mktemp 2024-02-22T22:10:30.737 INFO:teuthology.orchestra.run.smithi049.stdout:/tmp/tmp.x9X2OEofTr 2024-02-22T22:10:30.738 DEBUG:teuthology.orchestra.run.smithi049:> sudo cp /boot/grub/grub.cfg /tmp/tmp.x9X2OEofTr 2024-02-22T22:10:30.748 DEBUG:teuthology.orchestra.run.smithi049:> sudo chmod 0666 /tmp/tmp.x9X2OEofTr 2024-02-22T22:10:30.831 DEBUG:teuthology.orchestra.remote:smithi049:/tmp/tmp.x9X2OEofTr is 9KB 2024-02-22T22:10:30.846 DEBUG:teuthology.orchestra.run.smithi049:> rm -fr /tmp/tmp.x9X2OEofTr 2024-02-22T22:10:30.852 DEBUG:teuthology.orchestra.run.smithi049:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-02-22T22:10:30.906 DEBUG:teuthology.orchestra.run.smithi049:> set -ex 2024-02-22T22:10:30.906 DEBUG:teuthology.orchestra.run.smithi049:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-02-22T22:10:30.906 DEBUG:teuthology.orchestra.run.smithi049:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-02-22T22:10:30.944 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-94-generic 2024-02-22T22:10:30.945 DEBUG:teuthology.orchestra.run.smithi049:> sudo update-grub 2024-02-22T22:10:32.006 INFO:teuthology.orchestra.run.smithi195.stderr:done 2024-02-22T22:10:32.008 DEBUG:teuthology.orchestra.run.smithi195:> sudo shutdown -r now 2024-02-22T22:10:32.441 INFO:teuthology.orchestra.run.smithi049.stderr:Sourcing file `/etc/default/grub' 2024-02-22T22:10:32.458 INFO:teuthology.orchestra.run.smithi049.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-02-22T22:10:32.473 INFO:teuthology.orchestra.run.smithi049.stderr:Generating grub configuration file ... 2024-02-22T22:10:32.744 INFO:teuthology.orchestra.run.smithi049.stderr:Found linux image: /boot/vmlinuz-5.15.0-94-generic 2024-02-22T22:10:32.756 INFO:teuthology.orchestra.run.smithi049.stderr:Found initrd image: /boot/initrd.img-5.15.0-94-generic 2024-02-22T22:10:33.149 INFO:teuthology.orchestra.run.smithi049.stderr:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-02-22T22:10:33.160 INFO:teuthology.orchestra.run.smithi049.stderr:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-02-22T22:10:34.802 INFO:teuthology.orchestra.run.smithi049.stderr:done 2024-02-22T22:10:34.804 DEBUG:teuthology.orchestra.run.smithi049:> sudo shutdown -r now 2024-02-22T22:11:02.036 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-02-22T22:11:02.037 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi195.front.sepia.ceph.com' 2024-02-22T22:11:02.038 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi195.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-22T22:11:04.808 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-02-22T22:11:04.808 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi049.front.sepia.ceph.com' 2024-02-22T22:11:04.809 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi049.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-22T22:11:39.452 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.49 2024-02-22T22:11:48.461 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi049.front.sepia.ceph.com' 2024-02-22T22:11:48.462 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi049.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-22T22:11:51.520 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.49 2024-02-22T22:12:02.048 DEBUG:teuthology.orchestra.remote:timed out 2024-02-22T22:12:03.522 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi049.front.sepia.ceph.com' 2024-02-22T22:12:03.523 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi049.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-22T22:12:06.588 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.49 2024-02-22T22:12:11.052 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi195.front.sepia.ceph.com' 2024-02-22T22:12:11.053 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi195.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-22T22:12:11.774 DEBUG:teuthology.orchestra.run.smithi195:> true 2024-02-22T22:12:12.753 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi195.front.sepia.ceph.com' 2024-02-22T22:12:12.754 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-94-generic"... 2024-02-22T22:12:12.754 DEBUG:teuthology.orchestra.run.smithi195:> uname -r 2024-02-22T22:12:12.802 INFO:teuthology.orchestra.run.smithi195.stdout:5.15.0-94-generic 2024-02-22T22:12:12.803 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-94-generic vs 5.15.0-94-generic 2024-02-22T22:12:12.803 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-02-22T22:12:12.803 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-02-22T22:12:13.804 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-02-22T22:12:13.804 DEBUG:teuthology.orchestra.run.smithi195:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-02-22T22:12:14.107 INFO:teuthology.orchestra.run.smithi195.stdout:ttyS1 2024-02-22T22:12:14.139 DEBUG:teuthology.parallel:result is None 2024-02-22T22:12:21.589 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi049.front.sepia.ceph.com' 2024-02-22T22:12:21.590 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi049.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-22T22:12:40.128 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.49 2024-02-22T22:12:58.129 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi049.front.sepia.ceph.com' 2024-02-22T22:12:58.130 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi049.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-22T22:12:58.132 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.49 2024-02-22T22:13:19.133 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi049.front.sepia.ceph.com' 2024-02-22T22:13:19.134 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi049.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-22T22:13:19.398 DEBUG:teuthology.orchestra.run.smithi049:> true 2024-02-22T22:13:19.912 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi049.front.sepia.ceph.com' 2024-02-22T22:13:19.912 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-94-generic"... 2024-02-22T22:13:19.913 DEBUG:teuthology.orchestra.run.smithi049:> uname -r 2024-02-22T22:13:19.961 INFO:teuthology.orchestra.run.smithi049.stdout:5.15.0-94-generic 2024-02-22T22:13:19.961 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-94-generic vs 5.15.0-94-generic 2024-02-22T22:13:19.961 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-02-22T22:13:19.961 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-02-22T22:13:20.962 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-02-22T22:13:20.962 DEBUG:teuthology.orchestra.run.smithi049:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-02-22T22:13:21.035 INFO:teuthology.orchestra.run.smithi049.stdout:ttyS1 2024-02-22T22:13:21.061 DEBUG:teuthology.parallel:result is None 2024-02-22T22:13:21.062 INFO:teuthology.run_tasks:Running task internal.base... 2024-02-22T22:13:21.069 INFO:teuthology.task.internal:Creating test directory... 2024-02-22T22:13:21.070 DEBUG:teuthology.orchestra.run.smithi049:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-02-22T22:13:21.072 DEBUG:teuthology.orchestra.run.smithi195:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-02-22T22:13:21.080 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-02-22T22:13:21.086 INFO:teuthology.run_tasks:Running task internal.archive... 2024-02-22T22:13:21.096 INFO:teuthology.task.internal:Creating archive directory... 2024-02-22T22:13:21.096 DEBUG:teuthology.orchestra.run.smithi049:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-02-22T22:13:21.120 DEBUG:teuthology.orchestra.run.smithi195:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-02-22T22:13:21.140 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-02-22T22:13:21.147 INFO:teuthology.task.internal:Enabling coredump saving... 2024-02-22T22:13:21.147 DEBUG:teuthology.orchestra.run.smithi049:> 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-22T22:13:21.172 DEBUG:teuthology.orchestra.run.smithi195:> 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-22T22:13:21.193 INFO:teuthology.orchestra.run.smithi049.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-02-22T22:13:21.197 INFO:teuthology.orchestra.run.smithi049.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-02-22T22:13:21.206 INFO:teuthology.orchestra.run.smithi195.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-02-22T22:13:21.214 INFO:teuthology.orchestra.run.smithi195.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-02-22T22:13:21.215 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-02-22T22:13:21.223 INFO:teuthology.task.internal:Configuring sudo... 2024-02-22T22:13:21.223 DEBUG:teuthology.orchestra.run.smithi049:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-02-22T22:13:21.244 DEBUG:teuthology.orchestra.run.smithi195:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-02-22T22:13:21.275 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-02-22T22:13:21.284 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-02-22T22:13:21.284 DEBUG:teuthology.orchestra.run.smithi049:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-02-22T22:13:21.304 DEBUG:teuthology.orchestra.run.smithi195:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-02-22T22:13:21.323 DEBUG:teuthology.orchestra.run.smithi049:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-02-22T22:13:21.357 DEBUG:teuthology.orchestra.run.smithi049:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-02-22T22:13:21.406 DEBUG:teuthology.orchestra.run.smithi049:> set -ex 2024-02-22T22:13:21.406 DEBUG:teuthology.orchestra.run.smithi049:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-02-22T22:13:21.463 DEBUG:teuthology.orchestra.run.smithi195:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-02-22T22:13:21.471 DEBUG:teuthology.orchestra.run.smithi195:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-02-22T22:13:21.519 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-02-22T22:13:21.519 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-02-22T22:13:21.587 DEBUG:teuthology.orchestra.run.smithi049:> sudo service rsyslog restart 2024-02-22T22:13:21.590 DEBUG:teuthology.orchestra.run.smithi195:> sudo service rsyslog restart 2024-02-22T22:13:21.673 INFO:teuthology.run_tasks:Running task internal.timer... 2024-02-22T22:13:21.684 INFO:teuthology.task.internal:Starting timer... 2024-02-22T22:13:21.684 INFO:teuthology.run_tasks:Running task pcp... 2024-02-22T22:13:21.695 INFO:teuthology.run_tasks:Running task selinux... 2024-02-22T22:13:21.702 DEBUG:teuthology.task.selinux:Excluding smithi049: OS 'ubuntu' does not support SELinux 2024-02-22T22:13:21.703 DEBUG:teuthology.task.selinux:Excluding smithi195: OS 'ubuntu' does not support SELinux 2024-02-22T22:13:21.703 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-02-22T22:13:21.703 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-02-22T22:13:21.703 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-02-22T22:13:21.703 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-02-22T22:13:21.712 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-02-22T22:13:21.728 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-22T22:13:21.729 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi049.front.sepia.ceph.com,smithi195.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-02-22T22:18:49.200 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi049.front.sepia.ceph.com'), Remote(name='ubuntu@smithi195.front.sepia.ceph.com')] 2024-02-22T22:18:49.201 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi049.front.sepia.ceph.com' 2024-02-22T22:18:49.202 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi049.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-22T22:18:49.297 DEBUG:teuthology.orchestra.run.smithi049:> true 2024-02-22T22:18:49.417 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi049.front.sepia.ceph.com' 2024-02-22T22:18:49.418 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi195.front.sepia.ceph.com' 2024-02-22T22:18:49.418 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi195.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-22T22:18:49.509 DEBUG:teuthology.orchestra.run.smithi195:> true 2024-02-22T22:18:49.629 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi195.front.sepia.ceph.com' 2024-02-22T22:18:49.630 INFO:teuthology.run_tasks:Running task clock... 2024-02-22T22:18:49.641 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-02-22T22:18:49.641 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-02-22T22:18:49.642 DEBUG:teuthology.orchestra.run.smithi049:> 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-22T22:18:49.645 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-02-22T22:18:49.645 DEBUG:teuthology.orchestra.run.smithi195:> 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-22T22:18:49.676 INFO:teuthology.orchestra.run.smithi049.stdout:22 Feb 22:18:49 ntpd[12650]: ntpd 4.2.8p12@1.3728-o (1): Starting 2024-02-22T22:18:49.676 INFO:teuthology.orchestra.run.smithi049.stdout:22 Feb 22:18:49 ntpd[12650]: Command line: ntpd -gq 2024-02-22T22:18:49.677 INFO:teuthology.orchestra.run.smithi049.stdout:22 Feb 22:18:49 ntpd[12650]: proto: precision = 0.072 usec (-24) 2024-02-22T22:18:49.677 INFO:teuthology.orchestra.run.smithi049.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-02-22T22:18:49.677 INFO:teuthology.orchestra.run.smithi049.stdout:22 Feb 22:18:49 ntpd[12650]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-02-22T22:18:49.678 INFO:teuthology.orchestra.run.smithi049.stdout:22 Feb 22:18:49 ntpd[12650]: restrict ::: KOD does nothing without LIMITED. 2024-02-22T22:18:49.678 INFO:teuthology.orchestra.run.smithi049.stderr:restrict ::: KOD does nothing without LIMITED. 2024-02-22T22:18:49.679 INFO:teuthology.orchestra.run.smithi049.stdout:22 Feb 22:18:49 ntpd[12650]: Listen and drop on 0 v6wildcard [::]:123 2024-02-22T22:18:49.679 INFO:teuthology.orchestra.run.smithi049.stdout:22 Feb 22:18:49 ntpd[12650]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-02-22T22:18:49.679 INFO:teuthology.orchestra.run.smithi049.stdout:22 Feb 22:18:49 ntpd[12650]: Listen normally on 2 lo 127.0.0.1:123 2024-02-22T22:18:49.679 INFO:teuthology.orchestra.run.smithi049.stdout:22 Feb 22:18:49 ntpd[12650]: Listen normally on 3 ens1f0 172.21.15.49:123 2024-02-22T22:18:49.679 INFO:teuthology.orchestra.run.smithi049.stdout:22 Feb 22:18:49 ntpd[12650]: Listen normally on 4 lo [::1]:123 2024-02-22T22:18:49.679 INFO:teuthology.orchestra.run.smithi049.stdout:22 Feb 22:18:49 ntpd[12650]: Listen normally on 5 ens1f0 [fe80::ec4:7aff:febd:1566%4]:123 2024-02-22T22:18:49.679 INFO:teuthology.orchestra.run.smithi049.stdout:22 Feb 22:18:49 ntpd[12650]: Listening on routing socket on fd #22 for interface updates 2024-02-22T22:18:49.707 INFO:teuthology.orchestra.run.smithi195.stdout:22 Feb 22:18:49 ntpd[12752]: ntpd 4.2.8p12@1.3728-o (1): Starting 2024-02-22T22:18:49.708 INFO:teuthology.orchestra.run.smithi195.stdout:22 Feb 22:18:49 ntpd[12752]: Command line: ntpd -gq 2024-02-22T22:18:49.709 INFO:teuthology.orchestra.run.smithi195.stdout:22 Feb 22:18:49 ntpd[12752]: proto: precision = 0.105 usec (-23) 2024-02-22T22:18:49.709 INFO:teuthology.orchestra.run.smithi195.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-02-22T22:18:49.709 INFO:teuthology.orchestra.run.smithi195.stdout:22 Feb 22:18:49 ntpd[12752]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-02-22T22:18:49.709 INFO:teuthology.orchestra.run.smithi195.stderr:restrict ::: KOD does nothing without LIMITED. 2024-02-22T22:18:49.710 INFO:teuthology.orchestra.run.smithi195.stdout:22 Feb 22:18:49 ntpd[12752]: restrict ::: KOD does nothing without LIMITED. 2024-02-22T22:18:49.711 INFO:teuthology.orchestra.run.smithi195.stdout:22 Feb 22:18:49 ntpd[12752]: Listen and drop on 0 v6wildcard [::]:123 2024-02-22T22:18:49.711 INFO:teuthology.orchestra.run.smithi195.stdout:22 Feb 22:18:49 ntpd[12752]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-02-22T22:18:49.711 INFO:teuthology.orchestra.run.smithi195.stdout:22 Feb 22:18:49 ntpd[12752]: Listen normally on 2 lo 127.0.0.1:123 2024-02-22T22:18:49.711 INFO:teuthology.orchestra.run.smithi195.stdout:22 Feb 22:18:49 ntpd[12752]: Listen normally on 3 enp3s0f1 172.21.15.195:123 2024-02-22T22:18:49.711 INFO:teuthology.orchestra.run.smithi195.stdout:22 Feb 22:18:49 ntpd[12752]: Listen normally on 4 lo [::1]:123 2024-02-22T22:18:49.711 INFO:teuthology.orchestra.run.smithi195.stdout:22 Feb 22:18:49 ntpd[12752]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:8081%5]:123 2024-02-22T22:18:49.711 INFO:teuthology.orchestra.run.smithi195.stdout:22 Feb 22:18:49 ntpd[12752]: Listening on routing socket on fd #22 for interface updates 2024-02-22T22:18:50.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:50 ntpd[12650]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:50.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:50 ntpd[12650]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:50.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:50 ntpd[12650]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:50.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:50 ntpd[12650]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:50.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:50 ntpd[12650]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:50.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:50 ntpd[12650]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:50.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:50 ntpd[12650]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-22T22:18:50.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:50 ntpd[12650]: can't open /var/log/ntpstats/peerstats.20240222: Permission denied 2024-02-22T22:18:50.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:50 ntpd[12650]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:50.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:50 ntpd[12650]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:50.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:50 ntpd[12650]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-22T22:18:50.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:50 ntpd[12650]: can't open /var/log/ntpstats/peerstats.20240222: Permission denied 2024-02-22T22:18:50.709 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:50 ntpd[12752]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:50.709 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:50 ntpd[12752]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:50.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:50 ntpd[12752]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:50.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:50 ntpd[12752]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:50.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:50 ntpd[12752]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:50.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:50 ntpd[12752]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:50.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:50 ntpd[12752]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:50.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:50 ntpd[12752]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:50.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:50 ntpd[12752]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-22T22:18:50.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:50 ntpd[12752]: can't open /var/log/ntpstats/peerstats.20240222: Permission denied 2024-02-22T22:18:50.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:50 ntpd[12752]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:50.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:50 ntpd[12752]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:50.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:50 ntpd[12752]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-22T22:18:50.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:50 ntpd[12752]: can't open /var/log/ntpstats/peerstats.20240222: Permission denied 2024-02-22T22:18:52.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:52 ntpd[12650]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:52.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:52 ntpd[12650]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:52.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:52 ntpd[12650]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:52.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:52 ntpd[12650]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:52.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:52 ntpd[12650]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:52.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:52 ntpd[12650]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:52.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:52 ntpd[12650]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-22T22:18:52.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:52 ntpd[12650]: can't open /var/log/ntpstats/peerstats.20240222: Permission denied 2024-02-22T22:18:52.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:52 ntpd[12650]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:52.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:52 ntpd[12650]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:52.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:52 ntpd[12650]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-22T22:18:52.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:52 ntpd[12650]: can't open /var/log/ntpstats/peerstats.20240222: Permission denied 2024-02-22T22:18:52.709 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:52 ntpd[12752]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:52.709 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:52 ntpd[12752]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:52.709 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:52 ntpd[12752]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:52.709 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:52 ntpd[12752]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:52.709 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:52 ntpd[12752]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:52.709 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:52 ntpd[12752]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:52.709 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:52 ntpd[12752]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-22T22:18:52.709 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:52 ntpd[12752]: can't open /var/log/ntpstats/peerstats.20240222: Permission denied 2024-02-22T22:18:52.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:52 ntpd[12752]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:52.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:52 ntpd[12752]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:52.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:52 ntpd[12752]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-22T22:18:52.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:52 ntpd[12752]: can't open /var/log/ntpstats/peerstats.20240222: Permission denied 2024-02-22T22:18:53.677 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:53 ntpd[12650]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:53.711 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:53 ntpd[12650]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:53.711 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:53 ntpd[12650]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:53.711 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:53 ntpd[12650]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:53.711 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:53 ntpd[12650]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-22T22:18:53.711 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:53 ntpd[12650]: can't open /var/log/ntpstats/peerstats.20240222: Permission denied 2024-02-22T22:18:54.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:54 ntpd[12650]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:54.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:54 ntpd[12650]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:54.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:54 ntpd[12650]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:54.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:54 ntpd[12650]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:54.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:54 ntpd[12650]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:54.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:54 ntpd[12650]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:54.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:54 ntpd[12650]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:54.679 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:54 ntpd[12650]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:54.679 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:54 ntpd[12650]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-22T22:18:54.679 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:54 ntpd[12650]: can't open /var/log/ntpstats/peerstats.20240222: Permission denied 2024-02-22T22:18:54.679 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:54 ntpd[12650]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:54.679 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:54 ntpd[12650]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:54.679 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:54 ntpd[12650]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-22T22:18:54.679 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:54 ntpd[12650]: can't open /var/log/ntpstats/peerstats.20240222: Permission denied 2024-02-22T22:18:54.709 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:54 ntpd[12752]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:54.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:54 ntpd[12752]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:54.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:54 ntpd[12752]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:54.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:54 ntpd[12752]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:54.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:54 ntpd[12752]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:54.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:54 ntpd[12752]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:54.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:54 ntpd[12752]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:54.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:54 ntpd[12752]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:54.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:54 ntpd[12752]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-22T22:18:54.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:54 ntpd[12752]: can't open /var/log/ntpstats/peerstats.20240222: Permission denied 2024-02-22T22:18:54.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:54 ntpd[12752]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:54.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:54 ntpd[12752]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:54.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:54 ntpd[12752]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-22T22:18:54.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:54 ntpd[12752]: can't open /var/log/ntpstats/peerstats.20240222: Permission denied 2024-02-22T22:18:54.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:54 ntpd[12752]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:54.711 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:54 ntpd[12752]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:54.711 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:54 ntpd[12752]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-22T22:18:54.711 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:54 ntpd[12752]: can't open /var/log/ntpstats/peerstats.20240222: Permission denied 2024-02-22T22:18:55.677 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:55 ntpd[12650]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:55.677 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:55 ntpd[12650]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:55.677 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:55 ntpd[12650]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:55.677 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:55 ntpd[12650]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:55.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:55 ntpd[12650]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-22T22:18:55.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:55 ntpd[12650]: can't open /var/log/ntpstats/peerstats.20240222: Permission denied 2024-02-22T22:18:56.677 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:56 ntpd[12650]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:56.677 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:56 ntpd[12650]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:56.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:56 ntpd[12650]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:56.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:56 ntpd[12650]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:56.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:56 ntpd[12650]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:56.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:56 ntpd[12650]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:56.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:56 ntpd[12650]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-22T22:18:56.678 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:56 ntpd[12650]: can't open /var/log/ntpstats/peerstats.20240222: Permission denied 2024-02-22T22:18:56.678 INFO:teuthology.orchestra.run.smithi049.stdout:22 Feb 22:18:56 ntpd[12650]: ntpd: time slew -0.001126 s 2024-02-22T22:18:56.678 INFO:teuthology.orchestra.run.smithi049.stdout:ntpd: time slew -0.001126s 2024-02-22T22:18:56.679 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:56 ntpd[12650]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-02-22T22:18:56.679 INFO:teuthology.orchestra.run.smithi049.stderr:22 Feb 22:18:56 ntpd[12650]: can't open /var/log/ntpstats/loopstats.20240222: Permission denied 2024-02-22T22:18:56.709 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:56 ntpd[12752]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:56.709 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:56 ntpd[12752]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:56.709 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:56 ntpd[12752]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:56.709 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:56 ntpd[12752]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:56.709 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:56 ntpd[12752]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:56.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:56 ntpd[12752]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:56.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:56 ntpd[12752]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:56.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:56 ntpd[12752]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:56.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:56 ntpd[12752]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-22T22:18:56.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:56 ntpd[12752]: can't open /var/log/ntpstats/peerstats.20240222: Permission denied 2024-02-22T22:18:56.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:56 ntpd[12752]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-22T22:18:56.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:56 ntpd[12752]: can't open /var/log/ntpstats/rawstats.20240222: Permission denied 2024-02-22T22:18:56.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:56 ntpd[12752]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-22T22:18:56.710 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:56 ntpd[12752]: can't open /var/log/ntpstats/peerstats.20240222: Permission denied 2024-02-22T22:18:56.710 INFO:teuthology.orchestra.run.smithi195.stdout:22 Feb 22:18:56 ntpd[12752]: ntpd: time slew +0.004989 s 2024-02-22T22:18:56.710 INFO:teuthology.orchestra.run.smithi195.stdout:ntpd: time slew +0.004989s 2024-02-22T22:18:56.711 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:56 ntpd[12752]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-02-22T22:18:56.711 INFO:teuthology.orchestra.run.smithi195.stderr:22 Feb 22:18:56 ntpd[12752]: can't open /var/log/ntpstats/loopstats.20240222: Permission denied 2024-02-22T22:18:56.738 INFO:teuthology.orchestra.run.smithi049.stdout: remote refid st t when poll reach delay offset jitter 2024-02-22T22:18:56.738 INFO:teuthology.orchestra.run.smithi049.stdout:============================================================================== 2024-02-22T22:18:56.738 INFO:teuthology.orchestra.run.smithi049.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-22T22:18:56.738 INFO:teuthology.orchestra.run.smithi049.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-22T22:18:56.738 INFO:teuthology.orchestra.run.smithi049.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-22T22:18:56.738 INFO:teuthology.orchestra.run.smithi049.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-22T22:18:56.770 INFO:teuthology.orchestra.run.smithi195.stdout: remote refid st t when poll reach delay offset jitter 2024-02-22T22:18:56.770 INFO:teuthology.orchestra.run.smithi195.stdout:============================================================================== 2024-02-22T22:18:56.770 INFO:teuthology.orchestra.run.smithi195.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-22T22:18:56.770 INFO:teuthology.orchestra.run.smithi195.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-22T22:18:56.771 INFO:teuthology.orchestra.run.smithi195.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-22T22:18:56.771 INFO:teuthology.orchestra.run.smithi195.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-22T22:18:56.772 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-02-22T22:18:56.782 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-02-22T22:18:56.782 DEBUG:teuthology.orchestra.run.smithi049:> set -ex 2024-02-22T22:18:56.783 DEBUG:teuthology.orchestra.run.smithi049:> dd if=/scratch_devs of=/dev/stdout 2024-02-22T22:18:56.790 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-22T22:18:56.790 DEBUG:teuthology.orchestra.run.smithi049:> stat /dev/vg_nvme/lv_1 2024-02-22T22:18:56.840 INFO:teuthology.orchestra.run.smithi049.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-02-22T22:18:56.840 INFO:teuthology.orchestra.run.smithi049.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-22T22:18:56.840 INFO:teuthology.orchestra.run.smithi049.stdout:Device: 5h/5d Inode: 493 Links: 1 2024-02-22T22:18:56.840 INFO:teuthology.orchestra.run.smithi049.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-22T22:18:56.841 INFO:teuthology.orchestra.run.smithi049.stdout:Access: 2024-02-22 22:17:21.742428259 +0000 2024-02-22T22:18:56.841 INFO:teuthology.orchestra.run.smithi049.stdout:Modify: 2024-02-22 22:17:21.474434440 +0000 2024-02-22T22:18:56.841 INFO:teuthology.orchestra.run.smithi049.stdout:Change: 2024-02-22 22:17:21.474434440 +0000 2024-02-22T22:18:56.841 INFO:teuthology.orchestra.run.smithi049.stdout: Birth: - 2024-02-22T22:18:56.841 DEBUG:teuthology.orchestra.run.smithi049:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-02-22T22:18:56.894 INFO:teuthology.orchestra.run.smithi049.stderr:1+0 records in 2024-02-22T22:18:56.894 INFO:teuthology.orchestra.run.smithi049.stderr:1+0 records out 2024-02-22T22:18:56.894 INFO:teuthology.orchestra.run.smithi049.stderr:512 bytes copied, 0.000279891 s, 1.8 MB/s 2024-02-22T22:18:56.895 DEBUG:teuthology.orchestra.run.smithi049:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-02-22T22:18:56.946 DEBUG:teuthology.orchestra.run.smithi049:> stat /dev/vg_nvme/lv_2 2024-02-22T22:18:56.996 INFO:teuthology.orchestra.run.smithi049.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-02-22T22:18:56.996 INFO:teuthology.orchestra.run.smithi049.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-22T22:18:56.996 INFO:teuthology.orchestra.run.smithi049.stdout:Device: 5h/5d Inode: 501 Links: 1 2024-02-22T22:18:56.996 INFO:teuthology.orchestra.run.smithi049.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-22T22:18:56.996 INFO:teuthology.orchestra.run.smithi049.stdout:Access: 2024-02-22 22:17:22.214417375 +0000 2024-02-22T22:18:56.997 INFO:teuthology.orchestra.run.smithi049.stdout:Modify: 2024-02-22 22:17:21.950423463 +0000 2024-02-22T22:18:56.997 INFO:teuthology.orchestra.run.smithi049.stdout:Change: 2024-02-22 22:17:21.950423463 +0000 2024-02-22T22:18:56.997 INFO:teuthology.orchestra.run.smithi049.stdout: Birth: - 2024-02-22T22:18:56.997 DEBUG:teuthology.orchestra.run.smithi049:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-02-22T22:18:57.050 INFO:teuthology.orchestra.run.smithi049.stderr:1+0 records in 2024-02-22T22:18:57.050 INFO:teuthology.orchestra.run.smithi049.stderr:1+0 records out 2024-02-22T22:18:57.050 INFO:teuthology.orchestra.run.smithi049.stderr:512 bytes copied, 0.000296179 s, 1.7 MB/s 2024-02-22T22:18:57.051 DEBUG:teuthology.orchestra.run.smithi049:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-02-22T22:18:57.101 DEBUG:teuthology.orchestra.run.smithi049:> stat /dev/vg_nvme/lv_3 2024-02-22T22:18:57.152 INFO:teuthology.orchestra.run.smithi049.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-02-22T22:18:57.152 INFO:teuthology.orchestra.run.smithi049.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-22T22:18:57.152 INFO:teuthology.orchestra.run.smithi049.stdout:Device: 5h/5d Inode: 507 Links: 1 2024-02-22T22:18:57.152 INFO:teuthology.orchestra.run.smithi049.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-22T22:18:57.152 INFO:teuthology.orchestra.run.smithi049.stdout:Access: 2024-02-22 22:17:22.674406767 +0000 2024-02-22T22:18:57.152 INFO:teuthology.orchestra.run.smithi049.stdout:Modify: 2024-02-22 22:17:22.430412393 +0000 2024-02-22T22:18:57.152 INFO:teuthology.orchestra.run.smithi049.stdout:Change: 2024-02-22 22:17:22.430412393 +0000 2024-02-22T22:18:57.153 INFO:teuthology.orchestra.run.smithi049.stdout: Birth: - 2024-02-22T22:18:57.153 DEBUG:teuthology.orchestra.run.smithi049:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-02-22T22:18:57.207 INFO:teuthology.orchestra.run.smithi049.stderr:1+0 records in 2024-02-22T22:18:57.208 INFO:teuthology.orchestra.run.smithi049.stderr:1+0 records out 2024-02-22T22:18:57.208 INFO:teuthology.orchestra.run.smithi049.stderr:512 bytes copied, 0.000308272 s, 1.7 MB/s 2024-02-22T22:18:57.209 DEBUG:teuthology.orchestra.run.smithi049:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-02-22T22:18:57.258 DEBUG:teuthology.orchestra.run.smithi049:> stat /dev/vg_nvme/lv_4 2024-02-22T22:18:57.308 INFO:teuthology.orchestra.run.smithi049.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-02-22T22:18:57.308 INFO:teuthology.orchestra.run.smithi049.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-22T22:18:57.309 INFO:teuthology.orchestra.run.smithi049.stdout:Device: 5h/5d Inode: 512 Links: 1 2024-02-22T22:18:57.309 INFO:teuthology.orchestra.run.smithi049.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-22T22:18:57.309 INFO:teuthology.orchestra.run.smithi049.stdout:Access: 2024-02-22 22:17:23.158395605 +0000 2024-02-22T22:18:57.309 INFO:teuthology.orchestra.run.smithi049.stdout:Modify: 2024-02-22 22:17:22.902401509 +0000 2024-02-22T22:18:57.309 INFO:teuthology.orchestra.run.smithi049.stdout:Change: 2024-02-22 22:17:22.902401509 +0000 2024-02-22T22:18:57.309 INFO:teuthology.orchestra.run.smithi049.stdout: Birth: - 2024-02-22T22:18:57.309 DEBUG:teuthology.orchestra.run.smithi049:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-02-22T22:18:57.362 INFO:teuthology.orchestra.run.smithi049.stderr:1+0 records in 2024-02-22T22:18:57.362 INFO:teuthology.orchestra.run.smithi049.stderr:1+0 records out 2024-02-22T22:18:57.362 INFO:teuthology.orchestra.run.smithi049.stderr:512 bytes copied, 0.000286328 s, 1.8 MB/s 2024-02-22T22:18:57.363 DEBUG:teuthology.orchestra.run.smithi049:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-02-22T22:18:57.414 DEBUG:teuthology.orchestra.run.smithi049:> 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-22T22:18:57.537 INFO:teuthology.orchestra.run.smithi049.stdout:loop 2024-02-22T22:18:57.538 INFO:tasks.nvme_loop:Connecting nvme_loop smithi049:/dev/vg_nvme/lv_1... 2024-02-22T22:18:57.539 DEBUG:teuthology.orchestra.run.smithi049:> 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-22T22:18:57.558 INFO:teuthology.orchestra.run.smithi049.stdout:1 2024-02-22T22:18:57.588 INFO:teuthology.orchestra.run.smithi049.stdout:/dev/vg_nvme/lv_11 2024-02-22T22:18:57.614 INFO:tasks.nvme_loop:Connecting nvme_loop smithi049:/dev/vg_nvme/lv_2... 2024-02-22T22:18:57.615 DEBUG:teuthology.orchestra.run.smithi049:> 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-22T22:18:57.682 INFO:teuthology.orchestra.run.smithi049.stdout:1 2024-02-22T22:18:57.704 INFO:teuthology.orchestra.run.smithi049.stdout:/dev/vg_nvme/lv_21 2024-02-22T22:18:57.727 INFO:tasks.nvme_loop:Connecting nvme_loop smithi049:/dev/vg_nvme/lv_3... 2024-02-22T22:18:57.728 DEBUG:teuthology.orchestra.run.smithi049:> 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-22T22:18:57.796 INFO:teuthology.orchestra.run.smithi049.stdout:1 2024-02-22T22:18:57.824 INFO:teuthology.orchestra.run.smithi049.stdout:/dev/vg_nvme/lv_31 2024-02-22T22:18:57.848 INFO:tasks.nvme_loop:Connecting nvme_loop smithi049:/dev/vg_nvme/lv_4... 2024-02-22T22:18:57.849 DEBUG:teuthology.orchestra.run.smithi049:> 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-22T22:18:57.912 INFO:teuthology.orchestra.run.smithi049.stdout:1 2024-02-22T22:18:57.935 INFO:teuthology.orchestra.run.smithi049.stdout:/dev/vg_nvme/lv_41 2024-02-22T22:18:57.960 DEBUG:teuthology.orchestra.run.smithi049:> set -ex 2024-02-22T22:18:57.960 DEBUG:teuthology.orchestra.run.smithi049:> dd if=/scratch_devs of=/dev/stdout 2024-02-22T22:18:58.008 DEBUG:teuthology.orchestra.run.smithi049:> sudo nvme list 2024-02-22T22:18:58.062 INFO:teuthology.orchestra.run.smithi049.stdout:Node SN Model Namespace Usage Format FW Rev 2024-02-22T22:18:58.063 INFO:teuthology.orchestra.run.smithi049.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-02-22T22:18:58.063 INFO:teuthology.orchestra.run.smithi049.stdout:/dev/nvme0n1 PHMB747500D2480DGN INTEL SSDPED1D480GA 1 480.10 GB / 480.10 GB 512 B + 0 B E2010325 2024-02-22T22:18:58.063 INFO:teuthology.orchestra.run.smithi049.stdout:/dev/nvme1n1 e445c0d12c7347d9cda1 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-22T22:18:58.063 INFO:teuthology.orchestra.run.smithi049.stdout:/dev/nvme2n1 4fc00f886c0d93ea2986 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-22T22:18:58.063 INFO:teuthology.orchestra.run.smithi049.stdout:/dev/nvme3n1 79236725611dc78b25a4 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-22T22:18:58.063 INFO:teuthology.orchestra.run.smithi049.stdout:/dev/nvme4n1 3d1f20dbb49738f2f07d Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-22T22:18:58.064 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-02-22T22:18:58.064 DEBUG:teuthology.orchestra.run.smithi049:> set -ex 2024-02-22T22:18:58.064 DEBUG:teuthology.orchestra.run.smithi049:> sudo dd of=/scratch_devs 2024-02-22T22:18:58.119 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-02-22T22:18:58.120 DEBUG:teuthology.orchestra.run.smithi195:> dd if=/scratch_devs of=/dev/stdout 2024-02-22T22:18:58.127 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-22T22:18:58.127 DEBUG:teuthology.orchestra.run.smithi195:> stat /dev/vg_nvme/lv_1 2024-02-22T22:18:58.176 INFO:teuthology.orchestra.run.smithi195.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-02-22T22:18:58.176 INFO:teuthology.orchestra.run.smithi195.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-22T22:18:58.176 INFO:teuthology.orchestra.run.smithi195.stdout:Device: 5h/5d Inode: 495 Links: 1 2024-02-22T22:18:58.176 INFO:teuthology.orchestra.run.smithi195.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-22T22:18:58.176 INFO:teuthology.orchestra.run.smithi195.stdout:Access: 2024-02-22 22:17:21.781928568 +0000 2024-02-22T22:18:58.176 INFO:teuthology.orchestra.run.smithi195.stdout:Modify: 2024-02-22 22:17:21.529934380 +0000 2024-02-22T22:18:58.176 INFO:teuthology.orchestra.run.smithi195.stdout:Change: 2024-02-22 22:17:21.529934380 +0000 2024-02-22T22:18:58.177 INFO:teuthology.orchestra.run.smithi195.stdout: Birth: - 2024-02-22T22:18:58.177 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-02-22T22:18:58.230 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records in 2024-02-22T22:18:58.230 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records out 2024-02-22T22:18:58.230 INFO:teuthology.orchestra.run.smithi195.stderr:512 bytes copied, 0.000268963 s, 1.9 MB/s 2024-02-22T22:18:58.231 DEBUG:teuthology.orchestra.run.smithi195:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-02-22T22:18:58.282 DEBUG:teuthology.orchestra.run.smithi195:> stat /dev/vg_nvme/lv_2 2024-02-22T22:18:58.332 INFO:teuthology.orchestra.run.smithi195.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-02-22T22:18:58.332 INFO:teuthology.orchestra.run.smithi195.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-22T22:18:58.332 INFO:teuthology.orchestra.run.smithi195.stdout:Device: 5h/5d Inode: 502 Links: 1 2024-02-22T22:18:58.332 INFO:teuthology.orchestra.run.smithi195.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-22T22:18:58.332 INFO:teuthology.orchestra.run.smithi195.stdout:Access: 2024-02-22 22:17:22.297916668 +0000 2024-02-22T22:18:58.332 INFO:teuthology.orchestra.run.smithi195.stdout:Modify: 2024-02-22 22:17:22.025922942 +0000 2024-02-22T22:18:58.332 INFO:teuthology.orchestra.run.smithi195.stdout:Change: 2024-02-22 22:17:22.025922942 +0000 2024-02-22T22:18:58.333 INFO:teuthology.orchestra.run.smithi195.stdout: Birth: - 2024-02-22T22:18:58.333 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-02-22T22:18:58.386 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records in 2024-02-22T22:18:58.386 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records out 2024-02-22T22:18:58.386 INFO:teuthology.orchestra.run.smithi195.stderr:512 bytes copied, 0.000249657 s, 2.1 MB/s 2024-02-22T22:18:58.387 DEBUG:teuthology.orchestra.run.smithi195:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-02-22T22:18:58.438 DEBUG:teuthology.orchestra.run.smithi195:> stat /dev/vg_nvme/lv_3 2024-02-22T22:18:58.488 INFO:teuthology.orchestra.run.smithi195.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-02-22T22:18:58.488 INFO:teuthology.orchestra.run.smithi195.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-22T22:18:58.488 INFO:teuthology.orchestra.run.smithi195.stdout:Device: 5h/5d Inode: 506 Links: 1 2024-02-22T22:18:58.488 INFO:teuthology.orchestra.run.smithi195.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-22T22:18:58.488 INFO:teuthology.orchestra.run.smithi195.stdout:Access: 2024-02-22 22:17:22.761905967 +0000 2024-02-22T22:18:58.488 INFO:teuthology.orchestra.run.smithi195.stdout:Modify: 2024-02-22 22:17:22.513911686 +0000 2024-02-22T22:18:58.488 INFO:teuthology.orchestra.run.smithi195.stdout:Change: 2024-02-22 22:17:22.513911686 +0000 2024-02-22T22:18:58.488 INFO:teuthology.orchestra.run.smithi195.stdout: Birth: - 2024-02-22T22:18:58.489 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-02-22T22:18:58.542 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records in 2024-02-22T22:18:58.542 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records out 2024-02-22T22:18:58.542 INFO:teuthology.orchestra.run.smithi195.stderr:512 bytes copied, 0.000292021 s, 1.8 MB/s 2024-02-22T22:18:58.543 DEBUG:teuthology.orchestra.run.smithi195:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-02-22T22:18:58.594 DEBUG:teuthology.orchestra.run.smithi195:> stat /dev/vg_nvme/lv_4 2024-02-22T22:18:58.644 INFO:teuthology.orchestra.run.smithi195.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-02-22T22:18:58.644 INFO:teuthology.orchestra.run.smithi195.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-22T22:18:58.644 INFO:teuthology.orchestra.run.smithi195.stdout:Device: 5h/5d Inode: 513 Links: 1 2024-02-22T22:18:58.644 INFO:teuthology.orchestra.run.smithi195.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-22T22:18:58.645 INFO:teuthology.orchestra.run.smithi195.stdout:Access: 2024-02-22 22:17:23.237894990 +0000 2024-02-22T22:18:58.645 INFO:teuthology.orchestra.run.smithi195.stdout:Modify: 2024-02-22 22:17:22.969901172 +0000 2024-02-22T22:18:58.645 INFO:teuthology.orchestra.run.smithi195.stdout:Change: 2024-02-22 22:17:22.969901172 +0000 2024-02-22T22:18:58.645 INFO:teuthology.orchestra.run.smithi195.stdout: Birth: - 2024-02-22T22:18:58.645 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-02-22T22:18:58.697 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records in 2024-02-22T22:18:58.698 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records out 2024-02-22T22:18:58.698 INFO:teuthology.orchestra.run.smithi195.stderr:512 bytes copied, 0.000255967 s, 2.0 MB/s 2024-02-22T22:18:58.699 DEBUG:teuthology.orchestra.run.smithi195:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-02-22T22:18:58.749 DEBUG:teuthology.orchestra.run.smithi195:> 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-22T22:18:58.870 INFO:teuthology.orchestra.run.smithi195.stdout:loop 2024-02-22T22:18:58.871 INFO:tasks.nvme_loop:Connecting nvme_loop smithi195:/dev/vg_nvme/lv_1... 2024-02-22T22:18:58.872 DEBUG:teuthology.orchestra.run.smithi195:> 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-22T22:18:58.897 INFO:teuthology.orchestra.run.smithi195.stdout:1 2024-02-22T22:18:58.922 INFO:teuthology.orchestra.run.smithi195.stdout:/dev/vg_nvme/lv_11 2024-02-22T22:18:58.944 INFO:tasks.nvme_loop:Connecting nvme_loop smithi195:/dev/vg_nvme/lv_2... 2024-02-22T22:18:58.944 DEBUG:teuthology.orchestra.run.smithi195:> 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-22T22:18:59.007 INFO:teuthology.orchestra.run.smithi195.stdout:1 2024-02-22T22:18:59.036 INFO:teuthology.orchestra.run.smithi195.stdout:/dev/vg_nvme/lv_21 2024-02-22T22:18:59.060 INFO:tasks.nvme_loop:Connecting nvme_loop smithi195:/dev/vg_nvme/lv_3... 2024-02-22T22:18:59.060 DEBUG:teuthology.orchestra.run.smithi195:> 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-22T22:18:59.127 INFO:teuthology.orchestra.run.smithi195.stdout:1 2024-02-22T22:18:59.151 INFO:teuthology.orchestra.run.smithi195.stdout:/dev/vg_nvme/lv_31 2024-02-22T22:18:59.174 INFO:tasks.nvme_loop:Connecting nvme_loop smithi195:/dev/vg_nvme/lv_4... 2024-02-22T22:18:59.174 DEBUG:teuthology.orchestra.run.smithi195:> 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-22T22:18:59.246 INFO:teuthology.orchestra.run.smithi195.stdout:1 2024-02-22T22:18:59.272 INFO:teuthology.orchestra.run.smithi195.stdout:/dev/vg_nvme/lv_41 2024-02-22T22:18:59.291 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-02-22T22:18:59.292 DEBUG:teuthology.orchestra.run.smithi195:> dd if=/scratch_devs of=/dev/stdout 2024-02-22T22:18:59.339 DEBUG:teuthology.orchestra.run.smithi195:> sudo nvme list 2024-02-22T22:18:59.396 INFO:teuthology.orchestra.run.smithi195.stdout:Node SN Model Namespace Usage Format FW Rev 2024-02-22T22:18:59.396 INFO:teuthology.orchestra.run.smithi195.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-02-22T22:18:59.396 INFO:teuthology.orchestra.run.smithi195.stdout:/dev/nvme0n1 PHMB751300FS480DGN INTEL SSDPED1D480GA 1 480.10 GB / 480.10 GB 512 B + 0 B E2010325 2024-02-22T22:18:59.396 INFO:teuthology.orchestra.run.smithi195.stdout:/dev/nvme1n1 a5bcb4d9c6f52bd9c372 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-22T22:18:59.396 INFO:teuthology.orchestra.run.smithi195.stdout:/dev/nvme2n1 190783c0aa6dcbd8b840 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-22T22:18:59.396 INFO:teuthology.orchestra.run.smithi195.stdout:/dev/nvme3n1 4cff2f6624c37ba5eb48 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-22T22:18:59.396 INFO:teuthology.orchestra.run.smithi195.stdout:/dev/nvme4n1 605b0c7a831a81528611 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-22T22:18:59.397 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-02-22T22:18:59.398 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-02-22T22:18:59.398 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd of=/scratch_devs 2024-02-22T22:18:59.454 INFO:teuthology.run_tasks:Running task cephadm... 2024-02-22T22:18:59.523 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-22T22:18:59.523 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 2024-02-22T22:18:59.523 INFO:tasks.cephadm:Cluster fsid is 605df99c-d1d0-11ee-95c0-87774f69a715 2024-02-22T22:18:59.524 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-02-22T22:18:59.524 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-02-22T22:18:59.524 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi049': '172.21.15.49', 'mon.smithi195': '172.21.15.195'} 2024-02-22T22:18:59.524 INFO:tasks.cephadm:Normalizing hostnames... 2024-02-22T22:18:59.524 DEBUG:teuthology.orchestra.run.smithi049:> sudo hostname $(hostname -s) 2024-02-22T22:18:59.541 DEBUG:teuthology.orchestra.run.smithi195:> sudo hostname $(hostname -s) 2024-02-22T22:18:59.557 INFO:tasks.cephadm:Downloading cephadm (repo https://github.com/ceph/ceph-ci.git ref eb66ed921e744301e6863be6353618d63967ea59)... 2024-02-22T22:18:59.557 DEBUG:teuthology.orchestra.run.smithi049:> 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-22T22:18:59.730 INFO:teuthology.orchestra.run.smithi049.stdout:-rw-rw-r-- 1 ubuntu ubuntu 355729 Feb 22 22:18 /home/ubuntu/cephtest/cephadm 2024-02-22T22:18:59.730 DEBUG:teuthology.orchestra.run.smithi195:> 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-22T22:18:59.973 INFO:teuthology.orchestra.run.smithi195.stdout:-rw-rw-r-- 1 ubuntu ubuntu 355729 Feb 22 22:18 /home/ubuntu/cephtest/cephadm 2024-02-22T22:18:59.973 DEBUG:teuthology.orchestra.run.smithi049:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-02-22T22:18:59.982 DEBUG:teuthology.orchestra.run.smithi195:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-02-22T22:18:59.998 DEBUG:teuthology.orchestra.run.smithi049:> sudo mkdir -p /etc/ceph 2024-02-22T22:19:00.042 DEBUG:teuthology.orchestra.run.smithi195:> sudo mkdir -p /etc/ceph 2024-02-22T22:19:00.057 DEBUG:teuthology.orchestra.run.smithi049:> sudo chmod 777 /etc/ceph 2024-02-22T22:19:00.101 DEBUG:teuthology.orchestra.run.smithi195:> sudo chmod 777 /etc/ceph 2024-02-22T22:19:00.115 INFO:tasks.cephadm:Writing seed config... 2024-02-22T22:19:00.116 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-02-22T22:19:00.117 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-02-22T22:19:00.117 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-02-22T22:19:00.117 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-02-22T22:19:00.117 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-02-22T22:19:00.117 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-02-22T22:19:00.117 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-02-22T22:19:00.117 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-02-22T22:19:00.117 DEBUG:teuthology.orchestra.run.smithi049:> set -ex 2024-02-22T22:19:00.118 DEBUG:teuthology.orchestra.run.smithi049:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-02-22T22:19:00.153 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 = 605df99c-d1d0-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-22T22:19:00.153 DEBUG:teuthology.orchestra.run.smithi049:mon.smithi049> sudo journalctl -f -n 0 -u ceph-605df99c-d1d0-11ee-95c0-87774f69a715@mon.smithi049.service 2024-02-22T22:19:00.200 INFO:tasks.cephadm:Bootstrapping... 2024-02-22T22:19:00.200 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 -v bootstrap --fsid 605df99c-d1d0-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.49 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-02-22T22:19:00.479 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:-- Logs begin at Sun 2022-08-14 12:20:24 UTC. -- 2024-02-22T22:19:00.610 INFO:teuthology.orchestra.run.smithi049.stderr:-------------------------------------------------------------------------------- 2024-02-22T22:19:00.610 INFO:teuthology.orchestra.run.smithi049.stderr:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59', '-v', 'bootstrap', '--fsid', '605df99c-d1d0-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.49', '--skip-admin-label'] 2024-02-22T22:19:00.610 INFO:teuthology.orchestra.run.smithi049.stderr:Verifying podman|docker is present... 2024-02-22T22:19:00.610 INFO:teuthology.orchestra.run.smithi049.stderr:Verifying lvm2 is present... 2024-02-22T22:19:00.610 INFO:teuthology.orchestra.run.smithi049.stderr:Verifying time synchronization is in place... 2024-02-22T22:19:00.617 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: Failed to get unit file state for chrony.service: No such file or directory 2024-02-22T22:19:00.624 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: inactive 2024-02-22T22:19:00.630 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: Failed to get unit file state for chronyd.service: No such file or directory 2024-02-22T22:19:00.636 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: inactive 2024-02-22T22:19:00.643 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: masked 2024-02-22T22:19:00.651 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: inactive 2024-02-22T22:19:00.657 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: Failed to get unit file state for ntpd.service: No such file or directory 2024-02-22T22:19:00.664 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: inactive 2024-02-22T22:19:00.672 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: enabled 2024-02-22T22:19:00.679 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: active 2024-02-22T22:19:00.681 INFO:teuthology.orchestra.run.smithi049.stderr:Unit ntp.service is enabled and running 2024-02-22T22:19:00.683 INFO:teuthology.orchestra.run.smithi049.stderr:Repeating the final host check... 2024-02-22T22:19:00.683 INFO:teuthology.orchestra.run.smithi049.stderr:docker (/usr/bin/docker) is present 2024-02-22T22:19:00.683 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl is present 2024-02-22T22:19:00.683 INFO:teuthology.orchestra.run.smithi049.stderr:lvcreate is present 2024-02-22T22:19:00.687 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: Failed to get unit file state for chrony.service: No such file or directory 2024-02-22T22:19:00.694 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: inactive 2024-02-22T22:19:00.701 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: Failed to get unit file state for chronyd.service: No such file or directory 2024-02-22T22:19:00.708 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: inactive 2024-02-22T22:19:00.716 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: masked 2024-02-22T22:19:00.724 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: inactive 2024-02-22T22:19:00.731 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: Failed to get unit file state for ntpd.service: No such file or directory 2024-02-22T22:19:00.738 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: inactive 2024-02-22T22:19:00.747 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: enabled 2024-02-22T22:19:00.753 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: active 2024-02-22T22:19:00.755 INFO:teuthology.orchestra.run.smithi049.stderr:Unit ntp.service is enabled and running 2024-02-22T22:19:00.755 INFO:teuthology.orchestra.run.smithi049.stderr:Host looks OK 2024-02-22T22:19:00.755 INFO:teuthology.orchestra.run.smithi049.stderr:Cluster fsid: 605df99c-d1d0-11ee-95c0-87774f69a715 2024-02-22T22:19:00.755 INFO:teuthology.orchestra.run.smithi049.stderr:Acquiring lock 140318142863776 on /run/cephadm/605df99c-d1d0-11ee-95c0-87774f69a715.lock 2024-02-22T22:19:00.756 INFO:teuthology.orchestra.run.smithi049.stderr:Lock 140318142863776 acquired on /run/cephadm/605df99c-d1d0-11ee-95c0-87774f69a715.lock 2024-02-22T22:19:00.756 INFO:teuthology.orchestra.run.smithi049.stderr:Verifying IP 172.21.15.49 port 3300 ... 2024-02-22T22:19:00.756 INFO:teuthology.orchestra.run.smithi049.stderr:Verifying IP 172.21.15.49 port 6789 ... 2024-02-22T22:19:00.756 INFO:teuthology.orchestra.run.smithi049.stderr:Base mon IP(s) is [172.21.15.49:3300, 172.21.15.49:6789], mon addrv is [v2:172.21.15.49:3300,v1:172.21.15.49:6789] 2024-02-22T22:19:00.761 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/sbin/ip: default via 172.21.15.254 dev ens1f0 2024-02-22T22:19:00.761 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/sbin/ip: 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-02-22T22:19:00.761 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/sbin/ip: 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.49 2024-02-22T22:19:00.766 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/sbin/ip: ::1 dev lo proto kernel metric 256 pref medium 2024-02-22T22:19:00.766 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/sbin/ip: fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2024-02-22T22:19:00.766 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/sbin/ip: default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1765sec hoplimit 64 pref medium 2024-02-22T22:19:00.771 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/sbin/ip: 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-02-22T22:19:00.771 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/sbin/ip: inet6 ::1/128 scope host 2024-02-22T22:19:00.771 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/sbin/ip: valid_lft forever preferred_lft forever 2024-02-22T22:19:00.771 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/sbin/ip: 4: ens1f0: mtu 1500 state UP qlen 1000 2024-02-22T22:19:00.771 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/sbin/ip: inet6 fe80::ec4:7aff:febd:1566/64 scope link 2024-02-22T22:19:00.771 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/sbin/ip: valid_lft forever preferred_lft forever 2024-02-22T22:19:00.773 INFO:teuthology.orchestra.run.smithi049.stderr:Mon IP `172.21.15.49` is in CIDR network `172.21.0.0/20` 2024-02-22T22:19:00.773 INFO:teuthology.orchestra.run.smithi049.stderr:Mon IP `172.21.15.49` is in CIDR network `172.21.0.0/20` 2024-02-22T22:19:00.773 INFO:teuthology.orchestra.run.smithi049.stderr:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-02-22T22:19:00.774 INFO:teuthology.orchestra.run.smithi049.stderr:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-02-22T22:19:00.775 INFO:teuthology.orchestra.run.smithi049.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59... 2024-02-22T22:19:03.017 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/docker: eb66ed921e744301e6863be6353618d63967ea59: Pulling from ceph-ci/ceph 2024-02-22T22:19:03.025 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/docker: 0f642e61a11a: Pulling fs layer 2024-02-22T22:19:03.025 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/docker: 6a725db67f9d: Pulling fs layer 2024-02-22T22:19:06.820 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/docker: 0f642e61a11a: Verifying Checksum 2024-02-22T22:19:06.820 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/docker: 0f642e61a11a: Download complete 2024-02-22T22:19:10.699 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/docker: 0f642e61a11a: Pull complete 2024-02-22T22:19:18.162 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/docker: 6a725db67f9d: Verifying Checksum 2024-02-22T22:19:18.162 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/docker: 6a725db67f9d: Download complete 2024-02-22T22:19:30.976 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/docker: 6a725db67f9d: Pull complete 2024-02-22T22:19:31.228 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/docker: Digest: sha256:44277403522cf37edeee63b04643fd6c6e9416f13c3731a771e3cc8e53b7d010 2024-02-22T22:19:31.282 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/docker: Status: Downloaded newer image for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 2024-02-22T22:19:31.319 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/docker: quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 2024-02-22T22:19:43.826 INFO:teuthology.orchestra.run.smithi049.stderr:ceph: ceph version 16.2.14-550-geb66ed92 (eb66ed921e744301e6863be6353618d63967ea59) pacific (stable) 2024-02-22T22:19:44.469 INFO:teuthology.orchestra.run.smithi049.stderr:Ceph version: ceph version 16.2.14-550-geb66ed92 (eb66ed921e744301e6863be6353618d63967ea59) pacific (stable) 2024-02-22T22:19:44.469 INFO:teuthology.orchestra.run.smithi049.stderr:Extracting ceph user uid/gid from container image... 2024-02-22T22:19:45.276 INFO:teuthology.orchestra.run.smithi049.stderr:stat: 167 167 2024-02-22T22:19:45.899 INFO:teuthology.orchestra.run.smithi049.stderr:Creating initial keys... 2024-02-22T22:19:46.645 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-authtool: AQCCyNdlZyRqJhAAJpZsNKG/ORNeHZfS6wUThw== 2024-02-22T22:19:48.060 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-authtool: AQCEyNdl9U2WAxAAKoUKCPfhk3l4LOMoM3kgWw== 2024-02-22T22:19:49.440 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-authtool: AQCFyNdl5CEtGhAAJjXgdQn69//wZBmGTj+IkA== 2024-02-22T22:19:50.072 INFO:teuthology.orchestra.run.smithi049.stderr:Creating initial monmap... 2024-02-22T22:19:50.906 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: monmap file /tmp/monmap 2024-02-22T22:19:50.906 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: set fsid to 605df99c-d1d0-11ee-95c0-87774f69a715 2024-02-22T22:19:50.906 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-02-22T22:19:51.503 INFO:teuthology.orchestra.run.smithi049.stderr:monmaptool for smithi049 [v2:172.21.15.49:3300,v1:172.21.15.49:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-02-22T22:19:51.504 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/monmaptool: set fsid to 605df99c-d1d0-11ee-95c0-87774f69a715 2024-02-22T22:19:51.504 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-02-22T22:19:51.504 INFO:teuthology.orchestra.run.smithi049.stderr: 2024-02-22T22:19:51.504 INFO:teuthology.orchestra.run.smithi049.stderr:Creating mon... 2024-02-22T22:19:52.310 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.305+0000 7f4828043880 0 set uid:gid to 167:167 (ceph:ceph) 2024-02-22T22:19:52.310 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.305+0000 7f4828043880 1 imported monmap: 2024-02-22T22:19:52.311 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: epoch 0 2024-02-22T22:19:52.311 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: fsid 605df99c-d1d0-11ee-95c0-87774f69a715 2024-02-22T22:19:52.311 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: last_changed 2024-02-22T22:19:50.905807+0000 2024-02-22T22:19:52.312 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: created 2024-02-22T22:19:50.905807+0000 2024-02-22T22:19:52.312 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: min_mon_release 0 (unknown) 2024-02-22T22:19:52.312 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: election_strategy: 1 2024-02-22T22:19:52.312 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: 0: [v2:172.21.15.49:3300/0,v1:172.21.15.49:6789/0] mon.smithi049 2024-02-22T22:19:52.313 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: 2024-02-22T22:19:52.313 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.305+0000 7f4828043880 0 /usr/bin/ceph-mon: set fsid to 605df99c-d1d0-11ee-95c0-87774f69a715 2024-02-22T22:19:52.313 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: RocksDB version: 6.8.1 2024-02-22T22:19:52.313 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: 2024-02-22T22:19:52.314 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-02-22T22:19:52.314 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Compile date Feb 20 2024 2024-02-22T22:19:52.314 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: DB SUMMARY 2024-02-22T22:19:52.314 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: 2024-02-22T22:19:52.340 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi049/store.db dir, Total Num: 0, files: 2024-02-22T22:19:52.340 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: 2024-02-22T22:19:52.340 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi049/store.db: 2024-02-22T22:19:52.340 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: 2024-02-22T22:19:52.340 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.error_if_exists: 0 2024-02-22T22:19:52.340 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.create_if_missing: 1 2024-02-22T22:19:52.340 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.paranoid_checks: 1 2024-02-22T22:19:52.340 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.env: 0x561077826080 2024-02-22T22:19:52.341 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.fs: Posix File System 2024-02-22T22:19:52.341 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.info_log: 0x5610795c1300 2024-02-22T22:19:52.341 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.max_file_opening_threads: 16 2024-02-22T22:19:52.341 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.statistics: (nil) 2024-02-22T22:19:52.341 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.use_fsync: 0 2024-02-22T22:19:52.341 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.max_log_file_size: 0 2024-02-22T22:19:52.341 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-02-22T22:19:52.341 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-02-22T22:19:52.341 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.keep_log_file_num: 1000 2024-02-22T22:19:52.341 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.recycle_log_file_num: 0 2024-02-22T22:19:52.341 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.allow_fallocate: 1 2024-02-22T22:19:52.341 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.allow_mmap_reads: 0 2024-02-22T22:19:52.341 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.allow_mmap_writes: 0 2024-02-22T22:19:52.341 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.use_direct_reads: 0 2024-02-22T22:19:52.341 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-02-22T22:19:52.342 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.create_missing_column_families: 0 2024-02-22T22:19:52.342 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.db_log_dir: 2024-02-22T22:19:52.342 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi049/store.db 2024-02-22T22:19:52.342 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-02-22T22:19:52.342 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.max_subcompactions: 1 2024-02-22T22:19:52.342 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.max_background_flushes: -1 2024-02-22T22:19:52.342 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-02-22T22:19:52.342 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-02-22T22:19:52.342 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-02-22T22:19:52.342 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-02-22T22:19:52.342 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-02-22T22:19:52.342 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.advise_random_on_open: 1 2024-02-22T22:19:52.342 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.db_write_buffer_size: 0 2024-02-22T22:19:52.342 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.write_buffer_manager: 0x5610795c7950 2024-02-22T22:19:52.342 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-02-22T22:19:52.343 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-02-22T22:19:52.343 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-02-22T22:19:52.343 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-02-22T22:19:52.343 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.rate_limiter: (nil) 2024-02-22T22:19:52.343 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-02-22T22:19:52.343 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.wal_recovery_mode: 2 2024-02-22T22:19:52.343 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.enable_thread_tracking: 0 2024-02-22T22:19:52.343 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.enable_pipelined_write: 0 2024-02-22T22:19:52.343 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.unordered_write: 0 2024-02-22T22:19:52.343 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-02-22T22:19:52.343 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-02-22T22:19:52.343 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-02-22T22:19:52.343 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-02-22T22:19:52.343 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.row_cache: None 2024-02-22T22:19:52.343 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.wal_filter: None 2024-02-22T22:19:52.344 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-02-22T22:19:52.344 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.allow_ingest_behind: 0 2024-02-22T22:19:52.344 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.preserve_deletes: 0 2024-02-22T22:19:52.344 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.two_write_queues: 0 2024-02-22T22:19:52.344 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.manual_wal_flush: 0 2024-02-22T22:19:52.344 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.atomic_flush: 0 2024-02-22T22:19:52.344 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-02-22T22:19:52.344 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-02-22T22:19:52.344 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-02-22T22:19:52.344 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.log_readahead_size: 0 2024-02-22T22:19:52.344 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-02-22T22:19:52.344 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.max_background_jobs: 2 2024-02-22T22:19:52.344 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.max_background_compactions: -1 2024-02-22T22:19:52.344 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-02-22T22:19:52.344 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-02-22T22:19:52.345 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-02-22T22:19:52.345 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.max_total_wal_size: 0 2024-02-22T22:19:52.345 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-02-22T22:19:52.345 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-02-22T22:19:52.345 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-02-22T22:19:52.345 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-02-22T22:19:52.345 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.max_open_files: -1 2024-02-22T22:19:52.345 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.bytes_per_sync: 0 2024-02-22T22:19:52.345 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-02-22T22:19:52.345 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-02-22T22:19:52.345 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.compaction_readahead_size: 0 2024-02-22T22:19:52.345 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Compression algorithms supported: 2024-02-22T22:19:52.345 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-02-22T22:19:52.345 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: kZSTD supported: 0 2024-02-22T22:19:52.345 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: kXpressCompression supported: 0 2024-02-22T22:19:52.346 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: kLZ4HCCompression supported: 1 2024-02-22T22:19:52.346 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: kLZ4Compression supported: 1 2024-02-22T22:19:52.346 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: kBZip2Compression supported: 0 2024-02-22T22:19:52.346 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: kZlibCompression supported: 1 2024-02-22T22:19:52.346 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: kSnappyCompression supported: 1 2024-02-22T22:19:52.346 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-02-22T22:19:52.346 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: [db_impl/db_impl_open.cc:273] Creating manifest 1 2024-02-22T22:19:52.346 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: 2024-02-22T22:19:52.346 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi049/store.db/MANIFEST-000001 2024-02-22T22:19:52.346 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: 2024-02-22T22:19:52.346 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-02-22T22:19:52.346 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: 2024-02-22T22:19:52.346 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-02-22T22:19:52.346 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.merge_operator: 2024-02-22T22:19:52.346 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.compaction_filter: None 2024-02-22T22:19:52.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.compaction_filter_factory: None 2024-02-22T22:19:52.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-02-22T22:19:52.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-02-22T22:19:52.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x5610794d5d18) 2024-02-22T22:19:52.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: cache_index_and_filter_blocks: 1 2024-02-22T22:19:52.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: cache_index_and_filter_blocks_with_high_priority: 0 2024-02-22T22:19:52.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: pin_l0_filter_and_index_blocks_in_cache: 0 2024-02-22T22:19:52.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: pin_top_level_index_and_filter: 1 2024-02-22T22:19:52.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: index_type: 0 2024-02-22T22:19:52.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: data_block_index_type: 0 2024-02-22T22:19:52.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: index_shortening: 1 2024-02-22T22:19:52.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: data_block_hash_table_util_ratio: 0.750000 2024-02-22T22:19:52.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: hash_index_allow_collision: 1 2024-02-22T22:19:52.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: checksum: 1 2024-02-22T22:19:52.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: no_block_cache: 0 2024-02-22T22:19:52.348 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: block_cache: 0x56107950cd10 2024-02-22T22:19:52.348 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: block_cache_name: BinnedLRUCache 2024-02-22T22:19:52.348 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: block_cache_options: 2024-02-22T22:19:52.348 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: capacity : 536870912 2024-02-22T22:19:52.348 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: num_shard_bits : 4 2024-02-22T22:19:52.348 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: strict_capacity_limit : 0 2024-02-22T22:19:52.348 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: high_pri_pool_ratio: 0.000 2024-02-22T22:19:52.348 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: block_cache_compressed: (nil) 2024-02-22T22:19:52.348 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: persistent_cache: (nil) 2024-02-22T22:19:52.348 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: block_size: 4096 2024-02-22T22:19:52.348 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: block_size_deviation: 10 2024-02-22T22:19:52.348 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: block_restart_interval: 16 2024-02-22T22:19:52.348 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: index_block_restart_interval: 1 2024-02-22T22:19:52.348 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: metadata_block_size: 4096 2024-02-22T22:19:52.348 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: partition_filters: 0 2024-02-22T22:19:52.348 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: use_delta_encoding: 1 2024-02-22T22:19:52.349 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: filter_policy: rocksdb.BuiltinBloomFilter 2024-02-22T22:19:52.349 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: whole_key_filtering: 1 2024-02-22T22:19:52.349 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: verify_compression: 0 2024-02-22T22:19:52.349 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: read_amp_bytes_per_bit: 0 2024-02-22T22:19:52.349 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: format_version: 2 2024-02-22T22:19:52.349 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: enable_index_compression: 1 2024-02-22T22:19:52.349 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: block_align: 0 2024-02-22T22:19:52.349 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: 2024-02-22T22:19:52.349 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.write_buffer_size: 33554432 2024-02-22T22:19:52.349 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.max_write_buffer_number: 2 2024-02-22T22:19:52.349 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.compression: NoCompression 2024-02-22T22:19:52.349 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.bottommost_compression: Disabled 2024-02-22T22:19:52.349 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.prefix_extractor: nullptr 2024-02-22T22:19:52.349 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-02-22T22:19:52.349 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.num_levels: 7 2024-02-22T22:19:52.350 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-02-22T22:19:52.350 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-02-22T22:19:52.350 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-02-22T22:19:52.350 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-02-22T22:19:52.350 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-02-22T22:19:52.350 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-02-22T22:19:52.350 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-02-22T22:19:52.350 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-02-22T22:19:52.350 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-02-22T22:19:52.350 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-02-22T22:19:52.350 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.compression_opts.level: 32767 2024-02-22T22:19:52.350 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.compression_opts.strategy: 0 2024-02-22T22:19:52.350 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-02-22T22:19:52.350 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-02-22T22:19:52.350 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.compression_opts.enabled: false 2024-02-22T22:19:52.351 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-02-22T22:19:52.351 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-02-22T22:19:52.351 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-02-22T22:19:52.351 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.target_file_size_base: 67108864 2024-02-22T22:19:52.351 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-02-22T22:19:52.351 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-02-22T22:19:52.351 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-02-22T22:19:52.351 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-02-22T22:19:52.351 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-02-22T22:19:52.351 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-02-22T22:19:52.351 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-02-22T22:19:52.351 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-02-22T22:19:52.351 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-02-22T22:19:52.351 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-02-22T22:19:52.351 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-02-22T22:19:52.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-02-22T22:19:52.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-02-22T22:19:52.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.arena_block_size: 4194304 2024-02-22T22:19:52.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-02-22T22:19:52.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-02-22T22:19:52.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-02-22T22:19:52.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.disable_auto_compactions: 0 2024-02-22T22:19:52.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-02-22T22:19:52.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-02-22T22:19:52.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-02-22T22:19:52.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-02-22T22:19:52.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-02-22T22:19:52.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-02-22T22:19:52.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-02-22T22:19:52.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-02-22T22:19:52.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-02-22T22:19:52.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-02-22T22:19:52.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.table_properties_collectors: 2024-02-22T22:19:52.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.inplace_update_support: 0 2024-02-22T22:19:52.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-02-22T22:19:52.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-02-22T22:19:52.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-02-22T22:19:52.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-02-22T22:19:52.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.bloom_locality: 0 2024-02-22T22:19:52.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.max_successive_merges: 0 2024-02-22T22:19:52.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-02-22T22:19:52.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.paranoid_file_checks: 0 2024-02-22T22:19:52.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.force_consistency_checks: 0 2024-02-22T22:19:52.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.report_bg_io_stats: 0 2024-02-22T22:19:52.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.ttl: 2592000 2024-02-22T22:19:52.354 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.309+0000 7f4828043880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-02-22T22:19:52.354 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.313+0000 7f4828043880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi049/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-22T22:19:52.354 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: 2024-02-22T22:19:52.354 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.313+0000 7f4828043880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 0 2024-02-22T22:19:52.354 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: 2024-02-22T22:19:52.354 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.313+0000 7f4828043880 4 rocksdb: DB pointer 0x5610795d5800 2024-02-22T22:19:52.354 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.313+0000 7f4810eb6700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-02-22T22:19:52.354 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.313+0000 7f4810eb6700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-02-22T22:19:52.354 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: ** DB Stats ** 2024-02-22T22:19:52.354 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-02-22T22:19:52.354 INFO:teuthology.orchestra.run.smithi049.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-22T22:19:52.354 INFO:teuthology.orchestra.run.smithi049.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-22T22:19:52.354 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-22T22:19:52.354 INFO:teuthology.orchestra.run.smithi049.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-22T22:19:52.354 INFO:teuthology.orchestra.run.smithi049.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-22T22:19:52.355 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-22T22:19:52.355 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: 2024-02-22T22:19:52.355 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-02-22T22:19:52.355 INFO:teuthology.orchestra.run.smithi049.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-22T22:19:52.355 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-22T22:19:52.355 INFO:teuthology.orchestra.run.smithi049.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-22T22:19:52.355 INFO:teuthology.orchestra.run.smithi049.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-22T22:19:52.355 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: 2024-02-22T22:19:52.355 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-02-22T22:19:52.355 INFO:teuthology.orchestra.run.smithi049.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-22T22:19:52.355 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-22T22:19:52.355 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-02-22T22:19:52.355 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: Flush(GB): cumulative 0.000, interval 0.000 2024-02-22T22:19:52.355 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-22T22:19:52.355 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: AddFile(Total Files): cumulative 0, interval 0 2024-02-22T22:19:52.356 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: AddFile(L0 Files): cumulative 0, interval 0 2024-02-22T22:19:52.356 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: AddFile(Keys): cumulative 0, interval 0 2024-02-22T22:19:52.356 INFO:teuthology.orchestra.run.smithi049.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-22T22:19:52.356 INFO:teuthology.orchestra.run.smithi049.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-22T22:19:52.356 INFO:teuthology.orchestra.run.smithi049.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-22T22:19:52.356 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: 2024-02-22T22:19:52.356 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: ** File Read Latency Histogram By Level [default] ** 2024-02-22T22:19:52.356 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: 2024-02-22T22:19:52.356 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-02-22T22:19:52.356 INFO:teuthology.orchestra.run.smithi049.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-22T22:19:52.356 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-22T22:19:52.356 INFO:teuthology.orchestra.run.smithi049.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-22T22:19:52.356 INFO:teuthology.orchestra.run.smithi049.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-22T22:19:52.356 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: 2024-02-22T22:19:52.357 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-02-22T22:19:52.357 INFO:teuthology.orchestra.run.smithi049.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-22T22:19:52.357 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-22T22:19:52.357 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-02-22T22:19:52.357 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: Flush(GB): cumulative 0.000, interval 0.000 2024-02-22T22:19:52.357 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-22T22:19:52.357 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: AddFile(Total Files): cumulative 0, interval 0 2024-02-22T22:19:52.357 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: AddFile(L0 Files): cumulative 0, interval 0 2024-02-22T22:19:52.357 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: AddFile(Keys): cumulative 0, interval 0 2024-02-22T22:19:52.357 INFO:teuthology.orchestra.run.smithi049.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-22T22:19:52.357 INFO:teuthology.orchestra.run.smithi049.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-22T22:19:52.357 INFO:teuthology.orchestra.run.smithi049.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-22T22:19:52.357 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: 2024-02-22T22:19:52.357 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: ** File Read Latency Histogram By Level [default] ** 2024-02-22T22:19:52.357 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: 2024-02-22T22:19:52.357 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.317+0000 7f4828043880 4 rocksdb: [db_impl/db_impl.cc:397] Shutdown: canceling all background work 2024-02-22T22:19:52.358 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.317+0000 7f4828043880 4 rocksdb: [db_impl/db_impl.cc:573] Shutdown complete 2024-02-22T22:19:52.358 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph-mon: debug 2024-02-22T22:19:52.317+0000 7f4828043880 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-smithi049 for mon.smithi049 2024-02-22T22:19:52.915 INFO:teuthology.orchestra.run.smithi049.stderr:create mon.smithi049 on 2024-02-22T22:19:53.141 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-02-22T22:19:53.361 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: Created symlink /etc/systemd/system/multi-user.target.wants/ceph-605df99c-d1d0-11ee-95c0-87774f69a715.target -> /etc/systemd/system/ceph-605df99c-d1d0-11ee-95c0-87774f69a715.target. 2024-02-22T22:19:53.361 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: Created symlink /etc/systemd/system/ceph.target.wants/ceph-605df99c-d1d0-11ee-95c0-87774f69a715.target -> /etc/systemd/system/ceph-605df99c-d1d0-11ee-95c0-87774f69a715.target. 2024-02-22T22:19:53.802 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: Failed to reset failed state of unit ceph-605df99c-d1d0-11ee-95c0-87774f69a715@mon.smithi049.service: Unit ceph-605df99c-d1d0-11ee-95c0-87774f69a715@mon.smithi049.service not loaded. 2024-02-22T22:19:53.809 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: Created symlink /etc/systemd/system/ceph-605df99c-d1d0-11ee-95c0-87774f69a715.target.wants/ceph-605df99c-d1d0-11ee-95c0-87774f69a715@mon.smithi049.service -> /etc/systemd/system/ceph-605df99c-d1d0-11ee-95c0-87774f69a715@.service. 2024-02-22T22:19:54.027 INFO:teuthology.orchestra.run.smithi049.stderr:firewalld does not appear to be present 2024-02-22T22:19:54.027 INFO:teuthology.orchestra.run.smithi049.stderr:Not possible to enable service . firewalld.service is not available 2024-02-22T22:19:54.027 INFO:teuthology.orchestra.run.smithi049.stderr:Waiting for mon to start... 2024-02-22T22:19:54.027 INFO:teuthology.orchestra.run.smithi049.stderr:Waiting for mon... 2024-02-22T22:19:55.573 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:19:55 smithi049 bash[13620]: cluster 2024-02-22T22:19:55.415323+0000 mon.smithi049 (mon.0) 1 : cluster [INF] mon.smithi049 is new leader, mons smithi049 in quorum (ranks 0) 2024-02-22T22:19:55.767 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: cluster: 2024-02-22T22:19:55.768 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: id: 605df99c-d1d0-11ee-95c0-87774f69a715 2024-02-22T22:19:55.768 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: health: HEALTH_OK 2024-02-22T22:19:55.768 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: 2024-02-22T22:19:55.768 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: services: 2024-02-22T22:19:55.768 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: mon: 1 daemons, quorum smithi049 (age 0.346406s) 2024-02-22T22:19:55.768 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: mgr: no daemons active 2024-02-22T22:19:55.768 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: osd: 0 osds: 0 up, 0 in 2024-02-22T22:19:55.768 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: 2024-02-22T22:19:55.768 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: data: 2024-02-22T22:19:55.768 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: pools: 0 pools, 0 pgs 2024-02-22T22:19:55.768 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: objects: 0 objects, 0 B 2024-02-22T22:19:55.768 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: usage: 0 B used, 0 B / 0 B avail 2024-02-22T22:19:55.769 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: pgs: 2024-02-22T22:19:55.769 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: 2024-02-22T22:19:56.428 INFO:teuthology.orchestra.run.smithi049.stderr:mon is available 2024-02-22T22:19:56.428 INFO:teuthology.orchestra.run.smithi049.stderr:Assimilating anything we can from ceph.conf... 2024-02-22T22:19:56.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:19:56 smithi049 bash[13620]: cluster 2024-02-22T22:19:55.419421+0000 mon.smithi049 (mon.0) 2 : cluster [INF] mon.smithi049 is new leader, mons smithi049 in quorum (ranks 0) 2024-02-22T22:19:56.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:19:56 smithi049 bash[13620]: cluster 2024-02-22T22:19:55.419689+0000 mon.smithi049 (mon.0) 3 : cluster [DBG] monmap e1: 1 mons at {smithi049=[v2:172.21.15.49:3300/0,v1:172.21.15.49:6789/0]} removed_ranks: {} 2024-02-22T22:19:56.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:19:56 smithi049 bash[13620]: cluster 2024-02-22T22:19:55.422261+0000 mon.smithi049 (mon.0) 4 : cluster [DBG] fsmap 2024-02-22T22:19:56.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:19:56 smithi049 bash[13620]: cluster 2024-02-22T22:19:55.424859+0000 mon.smithi049 (mon.0) 5 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-02-22T22:19:56.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:19:56 smithi049 bash[13620]: cluster 2024-02-22T22:19:55.425523+0000 mon.smithi049 (mon.0) 6 : cluster [DBG] mgrmap e1: no daemons active 2024-02-22T22:19:56.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:19:56 smithi049 bash[13620]: audit 2024-02-22T22:19:55.765750+0000 mon.smithi049 (mon.0) 7 : audit [DBG] from='client.? 172.21.15.49:0/3110504402' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-02-22T22:19:57.718 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: 2024-02-22T22:19:57.718 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: [global] 2024-02-22T22:19:57.718 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: fsid = 605df99c-d1d0-11ee-95c0-87774f69a715 2024-02-22T22:19:57.718 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: log_to_journald = false 2024-02-22T22:19:57.718 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: mon_host = [v2:172.21.15.49:3300,v1:172.21.15.49:6789] 2024-02-22T22:19:57.719 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: mon_osd_allow_pg_remap = true 2024-02-22T22:19:57.719 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: mon_osd_allow_primary_affinity = true 2024-02-22T22:19:57.719 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: mon_warn_on_no_sortbitwise = false 2024-02-22T22:19:57.719 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: osd_crush_chooseleaf_type = 0 2024-02-22T22:19:57.720 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: 2024-02-22T22:19:57.720 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: [mgr] 2024-02-22T22:19:57.720 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: mgr/telemetry/nag = false 2024-02-22T22:19:57.720 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: 2024-02-22T22:19:57.720 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: [osd] 2024-02-22T22:19:57.720 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: osd_map_max_advance = 10 2024-02-22T22:19:57.720 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: osd_sloppy_crc = true 2024-02-22T22:19:58.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:19:57 smithi049 bash[13620]: audit 2024-02-22T22:19:57.711822+0000 mon.smithi049 (mon.0) 8 : audit [INF] from='client.? 172.21.15.49:0/2671455347' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-02-22T22:19:58.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:19:57 smithi049 bash[13620]: audit 2024-02-22T22:19:57.716808+0000 mon.smithi049 (mon.0) 9 : audit [INF] from='client.? 172.21.15.49:0/2671455347' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-02-22T22:19:58.382 INFO:teuthology.orchestra.run.smithi049.stderr:Generating new minimal ceph.conf... 2024-02-22T22:19:59.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:19:59 smithi049 bash[13620]: audit 2024-02-22T22:19:59.456546+0000 mon.smithi049 (mon.0) 10 : audit [DBG] from='client.? 172.21.15.49:0/4205918794' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:20:00.070 INFO:teuthology.orchestra.run.smithi049.stderr:Restarting the monitor... 2024-02-22T22:20:00.425 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:00 smithi049 systemd[1]: Stopping Ceph mon.smithi049 for 605df99c-d1d0-11ee-95c0-87774f69a715... 2024-02-22T22:20:00.425 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:00 smithi049 bash[14010]: Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-mon.smithi049 2024-02-22T22:20:00.425 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:00 smithi049 bash[13620]: debug 2024-02-22T22:20:00.245+0000 7f1ccb4b9700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi049 -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-22T22:20:00.425 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:00 smithi049 bash[13620]: debug 2024-02-22T22:20:00.245+0000 7f1ccb4b9700 -1 mon.smithi049@0(leader) e1 *** Got Signal Terminated *** 2024-02-22T22:20:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:00 smithi049 bash[14048]: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-mon-smithi049 2024-02-22T22:20:01.028 INFO:teuthology.orchestra.run.smithi049.stderr:Setting public_network to 172.21.0.0/20 in mon config section 2024-02-22T22:20:01.087 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:01 smithi049 bash[14109]: Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-mon-smithi049 2024-02-22T22:20:01.087 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:01 smithi049 systemd[1]: ceph-605df99c-d1d0-11ee-95c0-87774f69a715@mon.smithi049.service: Succeeded. 2024-02-22T22:20:01.087 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:01 smithi049 systemd[1]: Stopped Ceph mon.smithi049 for 605df99c-d1d0-11ee-95c0-87774f69a715. 2024-02-22T22:20:01.087 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:01 smithi049 systemd[1]: Started Ceph mon.smithi049 for 605df99c-d1d0-11ee-95c0-87774f69a715. 2024-02-22T22:20:02.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.329+0000 7f0739406880 0 set uid:gid to 167:167 (ceph:ceph) 2024-02-22T22:20:02.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.333+0000 7f0739406880 0 ceph version 16.2.14-550-geb66ed92 (eb66ed921e744301e6863be6353618d63967ea59) pacific (stable), process ceph-mon, pid 7 2024-02-22T22:20:02.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.333+0000 7f0739406880 0 pidfile_write: ignore empty --pid-file 2024-02-22T22:20:02.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 0 load: jerasure load: lrc load: isa 2024-02-22T22:20:02.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: RocksDB version: 6.8.1 2024-02-22T22:20:02.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-02-22T22:20:02.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Compile date Feb 20 2024 2024-02-22T22:20:02.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: DB SUMMARY 2024-02-22T22:20:02.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: CURRENT file: CURRENT 2024-02-22T22:20:02.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: IDENTITY file: IDENTITY 2024-02-22T22:20:02.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 131 Bytes 2024-02-22T22:20:02.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi049/store.db dir, Total Num: 1, files: 000004.sst 2024-02-22T22:20:02.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi049/store.db: 000006.log size: 87051 ; 2024-02-22T22:20:02.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.error_if_exists: 0 2024-02-22T22:20:02.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.create_if_missing: 0 2024-02-22T22:20:02.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.paranoid_checks: 1 2024-02-22T22:20:02.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.env: 0x55e0e1c26080 2024-02-22T22:20:02.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.fs: Posix File System 2024-02-22T22:20:02.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.info_log: 0x55e0e30c8560 2024-02-22T22:20:02.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.max_file_opening_threads: 16 2024-02-22T22:20:02.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.statistics: (nil) 2024-02-22T22:20:02.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.use_fsync: 0 2024-02-22T22:20:02.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.max_log_file_size: 0 2024-02-22T22:20:02.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-02-22T22:20:02.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-02-22T22:20:02.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.keep_log_file_num: 1000 2024-02-22T22:20:02.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.recycle_log_file_num: 0 2024-02-22T22:20:02.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.allow_fallocate: 1 2024-02-22T22:20:02.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.allow_mmap_reads: 0 2024-02-22T22:20:02.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.allow_mmap_writes: 0 2024-02-22T22:20:02.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.use_direct_reads: 0 2024-02-22T22:20:02.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-02-22T22:20:02.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.create_missing_column_families: 0 2024-02-22T22:20:02.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.db_log_dir: 2024-02-22T22:20:02.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi049/store.db 2024-02-22T22:20:02.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-02-22T22:20:02.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.max_subcompactions: 1 2024-02-22T22:20:02.447 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.max_background_flushes: -1 2024-02-22T22:20:02.447 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-02-22T22:20:02.447 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-02-22T22:20:02.447 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-02-22T22:20:02.447 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-02-22T22:20:02.447 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-02-22T22:20:02.447 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.advise_random_on_open: 1 2024-02-22T22:20:02.447 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.db_write_buffer_size: 0 2024-02-22T22:20:02.447 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.write_buffer_manager: 0x55e0e3d3a450 2024-02-22T22:20:02.447 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-02-22T22:20:02.447 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-02-22T22:20:02.447 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-02-22T22:20:02.447 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-02-22T22:20:02.448 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.rate_limiter: (nil) 2024-02-22T22:20:02.448 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-02-22T22:20:02.448 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.wal_recovery_mode: 2 2024-02-22T22:20:02.448 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.enable_thread_tracking: 0 2024-02-22T22:20:02.449 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.enable_pipelined_write: 0 2024-02-22T22:20:02.449 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.unordered_write: 0 2024-02-22T22:20:02.449 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-02-22T22:20:02.450 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-02-22T22:20:02.450 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-02-22T22:20:02.450 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-02-22T22:20:02.450 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.row_cache: None 2024-02-22T22:20:02.450 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.wal_filter: None 2024-02-22T22:20:02.450 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-02-22T22:20:02.450 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.allow_ingest_behind: 0 2024-02-22T22:20:02.450 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.preserve_deletes: 0 2024-02-22T22:20:02.450 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.two_write_queues: 0 2024-02-22T22:20:02.450 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.manual_wal_flush: 0 2024-02-22T22:20:02.450 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.atomic_flush: 0 2024-02-22T22:20:02.450 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-02-22T22:20:02.450 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-02-22T22:20:02.450 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-02-22T22:20:02.451 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.log_readahead_size: 0 2024-02-22T22:20:02.451 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-02-22T22:20:02.451 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.max_background_jobs: 2 2024-02-22T22:20:02.451 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.max_background_compactions: -1 2024-02-22T22:20:02.451 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-02-22T22:20:02.451 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-02-22T22:20:02.451 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-02-22T22:20:02.451 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.max_total_wal_size: 0 2024-02-22T22:20:02.451 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-02-22T22:20:02.451 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-02-22T22:20:02.451 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-02-22T22:20:02.451 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-02-22T22:20:02.451 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.max_open_files: -1 2024-02-22T22:20:02.451 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.bytes_per_sync: 0 2024-02-22T22:20:02.451 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-02-22T22:20:02.452 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-02-22T22:20:02.452 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.compaction_readahead_size: 0 2024-02-22T22:20:02.452 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Compression algorithms supported: 2024-02-22T22:20:02.452 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-02-22T22:20:02.452 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: kZSTD supported: 0 2024-02-22T22:20:02.452 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: kXpressCompression supported: 0 2024-02-22T22:20:02.452 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: kLZ4HCCompression supported: 1 2024-02-22T22:20:02.452 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: kLZ4Compression supported: 1 2024-02-22T22:20:02.452 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: kBZip2Compression supported: 0 2024-02-22T22:20:02.452 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: kZlibCompression supported: 1 2024-02-22T22:20:02.452 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: kSnappyCompression supported: 1 2024-02-22T22:20:02.452 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-02-22T22:20:02.452 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi049/store.db/MANIFEST-000005 2024-02-22T22:20:02.453 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-02-22T22:20:02.453 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-02-22T22:20:02.453 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.merge_operator: 2024-02-22T22:20:02.453 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.compaction_filter: None 2024-02-22T22:20:02.453 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.compaction_filter_factory: None 2024-02-22T22:20:02.453 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-02-22T22:20:02.453 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-02-22T22:20:02.453 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55e0e306bd10) 2024-02-22T22:20:02.453 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: cache_index_and_filter_blocks: 1 2024-02-22T22:20:02.453 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: cache_index_and_filter_blocks_with_high_priority: 0 2024-02-22T22:20:02.453 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-02-22T22:20:02.453 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: pin_top_level_index_and_filter: 1 2024-02-22T22:20:02.453 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: index_type: 0 2024-02-22T22:20:02.453 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: data_block_index_type: 0 2024-02-22T22:20:02.454 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: index_shortening: 1 2024-02-22T22:20:02.454 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: data_block_hash_table_util_ratio: 0.750000 2024-02-22T22:20:02.454 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: hash_index_allow_collision: 1 2024-02-22T22:20:02.454 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: checksum: 1 2024-02-22T22:20:02.454 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: no_block_cache: 0 2024-02-22T22:20:02.454 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: block_cache: 0x55e0e30a2f10 2024-02-22T22:20:02.454 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: block_cache_name: BinnedLRUCache 2024-02-22T22:20:02.454 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: block_cache_options: 2024-02-22T22:20:02.454 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: capacity : 536870912 2024-02-22T22:20:02.454 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: num_shard_bits : 4 2024-02-22T22:20:02.454 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: strict_capacity_limit : 0 2024-02-22T22:20:02.454 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: high_pri_pool_ratio: 0.000 2024-02-22T22:20:02.454 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: block_cache_compressed: (nil) 2024-02-22T22:20:02.454 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: persistent_cache: (nil) 2024-02-22T22:20:02.454 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: block_size: 4096 2024-02-22T22:20:02.455 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: block_size_deviation: 10 2024-02-22T22:20:02.455 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: block_restart_interval: 16 2024-02-22T22:20:02.455 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: index_block_restart_interval: 1 2024-02-22T22:20:02.455 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: metadata_block_size: 4096 2024-02-22T22:20:02.455 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: partition_filters: 0 2024-02-22T22:20:02.455 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: use_delta_encoding: 1 2024-02-22T22:20:02.455 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: filter_policy: rocksdb.BuiltinBloomFilter 2024-02-22T22:20:02.455 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: whole_key_filtering: 1 2024-02-22T22:20:02.455 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: verify_compression: 0 2024-02-22T22:20:02.455 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: read_amp_bytes_per_bit: 0 2024-02-22T22:20:02.455 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: format_version: 2 2024-02-22T22:20:02.455 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: enable_index_compression: 1 2024-02-22T22:20:02.455 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: block_align: 0 2024-02-22T22:20:02.455 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.write_buffer_size: 33554432 2024-02-22T22:20:02.455 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.max_write_buffer_number: 2 2024-02-22T22:20:02.456 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.compression: NoCompression 2024-02-22T22:20:02.456 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.bottommost_compression: Disabled 2024-02-22T22:20:02.456 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.prefix_extractor: nullptr 2024-02-22T22:20:02.456 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-02-22T22:20:02.456 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.num_levels: 7 2024-02-22T22:20:02.456 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-02-22T22:20:02.456 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-02-22T22:20:02.456 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-02-22T22:20:02.456 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-02-22T22:20:02.456 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-02-22T22:20:02.456 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-02-22T22:20:02.456 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-02-22T22:20:02.456 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-02-22T22:20:02.457 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-02-22T22:20:02.457 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-02-22T22:20:02.457 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.compression_opts.level: 32767 2024-02-22T22:20:02.457 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.compression_opts.strategy: 0 2024-02-22T22:20:02.457 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-02-22T22:20:02.457 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-02-22T22:20:02.457 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.compression_opts.enabled: false 2024-02-22T22:20:02.457 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-02-22T22:20:02.457 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-02-22T22:20:02.457 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-02-22T22:20:02.457 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.target_file_size_base: 67108864 2024-02-22T22:20:02.457 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-02-22T22:20:02.457 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-02-22T22:20:02.457 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-02-22T22:20:02.458 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-02-22T22:20:02.458 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-02-22T22:20:02.458 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-02-22T22:20:02.458 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-02-22T22:20:02.458 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-02-22T22:20:02.458 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-02-22T22:20:02.458 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-02-22T22:20:02.458 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-02-22T22:20:02.458 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-02-22T22:20:02.458 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-02-22T22:20:02.458 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.arena_block_size: 4194304 2024-02-22T22:20:02.458 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-02-22T22:20:02.458 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-02-22T22:20:02.458 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-02-22T22:20:02.458 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.disable_auto_compactions: 0 2024-02-22T22:20:02.459 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-02-22T22:20:02.459 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-02-22T22:20:02.459 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-02-22T22:20:02.459 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-02-22T22:20:02.459 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-02-22T22:20:02.459 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-02-22T22:20:02.459 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-02-22T22:20:02.459 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-02-22T22:20:02.459 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-02-22T22:20:02.459 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-02-22T22:20:02.459 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.table_properties_collectors: 2024-02-22T22:20:02.459 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.inplace_update_support: 0 2024-02-22T22:20:02.459 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-02-22T22:20:02.459 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-02-22T22:20:02.460 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-02-22T22:20:02.460 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-02-22T22:20:02.460 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.bloom_locality: 0 2024-02-22T22:20:02.460 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.max_successive_merges: 0 2024-02-22T22:20:02.460 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-02-22T22:20:02.460 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.paranoid_file_checks: 0 2024-02-22T22:20:02.460 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.force_consistency_checks: 0 2024-02-22T22:20:02.460 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.report_bg_io_stats: 0 2024-02-22T22:20:02.460 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.ttl: 2592000 2024-02-22T22:20:02.460 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-02-22T22:20:02.460 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi049/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-22T22:20:02.460 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 4 2024-02-22T22:20:02.460 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1708640402342076, "job": 1, "event": "recovery_started", "log_files": [6]} 2024-02-22T22:20:02.460 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.337+0000 7f0739406880 4 rocksdb: [db_impl/db_impl_open.cc:760] Recovering log #6 mode 2 2024-02-22T22:20:02.461 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.341+0000 7f0739406880 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-22T22:20:02.461 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.341+0000 7f0739406880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1708640402343966, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 7, "file_size": 83760, "table_properties": {"data_size": 82027, "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": 76582, "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": 1708640402, "oldest_key_time": 3, "file_creation_time": 0}} 2024-02-22T22:20:02.461 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.341+0000 7f0739406880 4 rocksdb: [version_set.cc:3826] Creating manifest 8 2024-02-22T22:20:02.461 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.341+0000 7f0739406880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1708640402344743, "job": 1, "event": "recovery_finished"} 2024-02-22T22:20:02.461 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.341+0000 7f0739406880 4 rocksdb: DB pointer 0x55e0e316b800 2024-02-22T22:20:02.461 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.341+0000 7f07201f8700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-02-22T22:20:02.461 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.341+0000 7f07201f8700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-02-22T22:20:02.461 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: ** DB Stats ** 2024-02-22T22:20:02.461 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-22T22:20:02.461 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: 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-22T22:20:02.461 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-02-22T22:20:02.461 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-22T22:20:02.461 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: 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-22T22:20:02.461 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-02-22T22:20:02.462 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-22T22:20:02.462 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: ** Compaction Stats [default] ** 2024-02-22T22:20:02.462 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: 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-22T22:20:02.462 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-22T22:20:02.462 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: L0 2/0 83.49 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 69.2 0.00 0.00 1 0.001 0 0 2024-02-22T22:20:02.462 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: Sum 2/0 83.49 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 69.2 0.00 0.00 1 0.001 0 0 2024-02-22T22:20:02.462 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 69.2 0.00 0.00 1 0.001 0 0 2024-02-22T22:20:02.462 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: ** Compaction Stats [default] ** 2024-02-22T22:20:02.462 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: 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-22T22:20:02.462 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-22T22:20:02.462 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 69.2 0.00 0.00 1 0.001 0 0 2024-02-22T22:20:02.462 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-22T22:20:02.462 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: Flush(GB): cumulative 0.000, interval 0.000 2024-02-22T22:20:02.462 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-22T22:20:02.463 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: AddFile(Total Files): cumulative 0, interval 0 2024-02-22T22:20:02.463 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: AddFile(L0 Files): cumulative 0, interval 0 2024-02-22T22:20:02.463 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: AddFile(Keys): cumulative 0, interval 0 2024-02-22T22:20:02.463 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: Cumulative compaction: 0.00 GB write, 13.45 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-22T22:20:02.463 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: Interval compaction: 0.00 GB write, 13.45 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-22T22:20:02.463 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: 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-22T22:20:02.463 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: ** File Read Latency Histogram By Level [default] ** 2024-02-22T22:20:02.463 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: ** Compaction Stats [default] ** 2024-02-22T22:20:02.463 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: 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-22T22:20:02.463 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-22T22:20:02.463 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: L0 2/0 83.49 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 69.2 0.00 0.00 1 0.001 0 0 2024-02-22T22:20:02.463 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: Sum 2/0 83.49 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 69.2 0.00 0.00 1 0.001 0 0 2024-02-22T22:20:02.463 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: 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-22T22:20:02.464 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: ** Compaction Stats [default] ** 2024-02-22T22:20:02.464 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: 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-22T22:20:02.464 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-22T22:20:02.464 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 69.2 0.00 0.00 1 0.001 0 0 2024-02-22T22:20:02.464 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-22T22:20:02.464 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: Flush(GB): cumulative 0.000, interval 0.000 2024-02-22T22:20:02.464 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-22T22:20:02.464 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: AddFile(Total Files): cumulative 0, interval 0 2024-02-22T22:20:02.464 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: AddFile(L0 Files): cumulative 0, interval 0 2024-02-22T22:20:02.464 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: AddFile(Keys): cumulative 0, interval 0 2024-02-22T22:20:02.464 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: Cumulative compaction: 0.00 GB write, 13.34 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-22T22:20:02.464 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: 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-22T22:20:02.464 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: 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-22T22:20:02.465 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: ** File Read Latency Histogram By Level [default] ** 2024-02-22T22:20:02.465 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.345+0000 7f0739406880 0 starting mon.smithi049 rank 0 at public addrs [v2:172.21.15.49:3300/0,v1:172.21.15.49:6789/0] at bind addrs [v2:172.21.15.49:3300/0,v1:172.21.15.49:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi049 fsid 605df99c-d1d0-11ee-95c0-87774f69a715 2024-02-22T22:20:02.465 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.345+0000 7f0739406880 1 mon.smithi049@-1(???) e1 preinit fsid 605df99c-d1d0-11ee-95c0-87774f69a715 2024-02-22T22:20:02.465 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.345+0000 7f0739406880 0 mon.smithi049@-1(???).mds e1 new map 2024-02-22T22:20:02.465 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.345+0000 7f0739406880 0 mon.smithi049@-1(???).mds e1 print_map 2024-02-22T22:20:02.465 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: e1 2024-02-22T22:20:02.465 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: enable_multiple, ever_enabled_multiple: 1,1 2024-02-22T22:20:02.465 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: 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-22T22:20:02.465 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: legacy client fscid: -1 2024-02-22T22:20:02.465 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: 2024-02-22T22:20:02.465 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: No filesystems configured 2024-02-22T22:20:02.465 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.345+0000 7f0739406880 0 mon.smithi049@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-02-22T22:20:02.465 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.345+0000 7f0739406880 0 mon.smithi049@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-02-22T22:20:02.466 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.345+0000 7f0739406880 0 mon.smithi049@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-02-22T22:20:02.466 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.345+0000 7f0739406880 0 mon.smithi049@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-02-22T22:20:02.466 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: audit 2024-02-22T22:19:59.456546+0000 mon.smithi049 (mon.0) 10 : audit [DBG] from='client.? 172.21.15.49:0/4205918794' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:20:02.466 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:02 smithi049 bash[14150]: debug 2024-02-22T22:20:02.345+0000 7f0739406880 1 mon.smithi049@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-02-22T22:20:03.197 INFO:teuthology.orchestra.run.smithi049.stderr:Wrote config to /etc/ceph/ceph.conf 2024-02-22T22:20:03.197 INFO:teuthology.orchestra.run.smithi049.stderr:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-02-22T22:20:03.197 INFO:teuthology.orchestra.run.smithi049.stderr:Creating mgr... 2024-02-22T22:20:03.197 INFO:teuthology.orchestra.run.smithi049.stderr:Verifying port 9283 ... 2024-02-22T22:20:03.437 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: Failed to reset failed state of unit ceph-605df99c-d1d0-11ee-95c0-87774f69a715@mgr.smithi049.pzczis.service: Unit ceph-605df99c-d1d0-11ee-95c0-87774f69a715@mgr.smithi049.pzczis.service not loaded. 2024-02-22T22:20:03.445 INFO:teuthology.orchestra.run.smithi049.stderr:systemctl: Created symlink /etc/systemd/system/ceph-605df99c-d1d0-11ee-95c0-87774f69a715.target.wants/ceph-605df99c-d1d0-11ee-95c0-87774f69a715@mgr.smithi049.pzczis.service -> /etc/systemd/system/ceph-605df99c-d1d0-11ee-95c0-87774f69a715@.service. 2024-02-22T22:20:03.644 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:03 smithi049 bash[14150]: cluster 2024-02-22T22:20:02.371618+0000 mon.smithi049 (mon.0) 1 : cluster [INF] mon.smithi049 is new leader, mons smithi049 in quorum (ranks 0) 2024-02-22T22:20:03.644 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:03 smithi049 bash[14150]: cluster 2024-02-22T22:20:02.371737+0000 mon.smithi049 (mon.0) 2 : cluster [DBG] monmap e1: 1 mons at {smithi049=[v2:172.21.15.49:3300/0,v1:172.21.15.49:6789/0]} removed_ranks: {} 2024-02-22T22:20:03.644 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:03 smithi049 bash[14150]: cluster 2024-02-22T22:20:02.372711+0000 mon.smithi049 (mon.0) 3 : cluster [DBG] fsmap 2024-02-22T22:20:03.644 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:03 smithi049 bash[14150]: cluster 2024-02-22T22:20:02.372817+0000 mon.smithi049 (mon.0) 4 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-02-22T22:20:03.644 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:03 smithi049 bash[14150]: cluster 2024-02-22T22:20:02.373604+0000 mon.smithi049 (mon.0) 5 : cluster [DBG] mgrmap e1: no daemons active 2024-02-22T22:20:03.645 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:03 smithi049 bash[14150]: audit 2024-02-22T22:20:02.561835+0000 mon.smithi049 (mon.0) 6 : audit [INF] from='client.? 172.21.15.49:0/2767209458' entity='client.admin' 2024-02-22T22:20:03.648 INFO:teuthology.orchestra.run.smithi049.stderr:firewalld does not appear to be present 2024-02-22T22:20:03.648 INFO:teuthology.orchestra.run.smithi049.stderr:Not possible to enable service . firewalld.service is not available 2024-02-22T22:20:03.648 INFO:teuthology.orchestra.run.smithi049.stderr:firewalld does not appear to be present 2024-02-22T22:20:03.648 INFO:teuthology.orchestra.run.smithi049.stderr:Not possible to open ports <[9283]>. firewalld.service is not available 2024-02-22T22:20:03.648 INFO:teuthology.orchestra.run.smithi049.stderr:Waiting for mgr to start... 2024-02-22T22:20:03.648 INFO:teuthology.orchestra.run.smithi049.stderr:Waiting for mgr... 2024-02-22T22:20:05.314 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: 2024-02-22T22:20:05.314 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: { 2024-02-22T22:20:05.314 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "fsid": "605df99c-d1d0-11ee-95c0-87774f69a715", 2024-02-22T22:20:05.314 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "health": { 2024-02-22T22:20:05.314 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-02-22T22:20:05.314 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "checks": {}, 2024-02-22T22:20:05.314 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "mutes": [] 2024-02-22T22:20:05.314 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: }, 2024-02-22T22:20:05.314 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-02-22T22:20:05.314 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "quorum": [ 2024-02-22T22:20:05.314 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: 0 2024-02-22T22:20:05.314 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: ], 2024-02-22T22:20:05.314 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "quorum_names": [ 2024-02-22T22:20:05.315 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "smithi049" 2024-02-22T22:20:05.315 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: ], 2024-02-22T22:20:05.315 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "quorum_age": 2, 2024-02-22T22:20:05.315 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "monmap": { 2024-02-22T22:20:05.315 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-22T22:20:05.315 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-02-22T22:20:05.315 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_mons": 1 2024-02-22T22:20:05.315 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: }, 2024-02-22T22:20:05.315 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "osdmap": { 2024-02-22T22:20:05.315 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-22T22:20:05.315 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_osds": 0, 2024-02-22T22:20:05.315 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-02-22T22:20:05.315 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-02-22T22:20:05.315 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-02-22T22:20:05.315 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-02-22T22:20:05.316 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-02-22T22:20:05.316 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: }, 2024-02-22T22:20:05.316 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "pgmap": { 2024-02-22T22:20:05.316 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-02-22T22:20:05.316 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-02-22T22:20:05.316 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_pools": 0, 2024-02-22T22:20:05.316 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_objects": 0, 2024-02-22T22:20:05.316 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-02-22T22:20:05.316 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-02-22T22:20:05.316 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-02-22T22:20:05.316 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "bytes_total": 0 2024-02-22T22:20:05.316 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: }, 2024-02-22T22:20:05.316 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "fsmap": { 2024-02-22T22:20:05.316 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-22T22:20:05.316 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "by_rank": [], 2024-02-22T22:20:05.317 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "up:standby": 0 2024-02-22T22:20:05.317 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: }, 2024-02-22T22:20:05.317 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "mgrmap": { 2024-02-22T22:20:05.317 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "available": false, 2024-02-22T22:20:05.317 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-02-22T22:20:05.317 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "modules": [ 2024-02-22T22:20:05.317 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "iostat", 2024-02-22T22:20:05.317 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "nfs", 2024-02-22T22:20:05.317 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "restful" 2024-02-22T22:20:05.317 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: ], 2024-02-22T22:20:05.317 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "services": {} 2024-02-22T22:20:05.317 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: }, 2024-02-22T22:20:05.317 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "servicemap": { 2024-02-22T22:20:05.317 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-22T22:20:05.317 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "modified": "2024-02-22T22:19:55.421175+0000", 2024-02-22T22:20:05.317 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "services": {} 2024-02-22T22:20:05.317 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: }, 2024-02-22T22:20:05.318 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "progress_events": {} 2024-02-22T22:20:05.318 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: } 2024-02-22T22:20:05.522 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:05 smithi049 bash[14150]: audit 2024-02-22T22:20:05.307485+0000 mon.smithi049 (mon.0) 7 : audit [DBG] from='client.? 172.21.15.49:0/4078740972' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-02-22T22:20:05.972 INFO:teuthology.orchestra.run.smithi049.stderr:mgr not available, waiting (1/15)... 2024-02-22T22:20:09.166 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: 2024-02-22T22:20:09.167 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: { 2024-02-22T22:20:09.167 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "fsid": "605df99c-d1d0-11ee-95c0-87774f69a715", 2024-02-22T22:20:09.168 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "health": { 2024-02-22T22:20:09.168 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-02-22T22:20:09.168 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "checks": {}, 2024-02-22T22:20:09.168 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "mutes": [] 2024-02-22T22:20:09.168 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: }, 2024-02-22T22:20:09.168 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-02-22T22:20:09.168 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "quorum": [ 2024-02-22T22:20:09.168 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: 0 2024-02-22T22:20:09.168 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: ], 2024-02-22T22:20:09.170 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "quorum_names": [ 2024-02-22T22:20:09.170 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "smithi049" 2024-02-22T22:20:09.170 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: ], 2024-02-22T22:20:09.170 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "quorum_age": 6, 2024-02-22T22:20:09.170 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "monmap": { 2024-02-22T22:20:09.170 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-22T22:20:09.170 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-02-22T22:20:09.170 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_mons": 1 2024-02-22T22:20:09.170 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: }, 2024-02-22T22:20:09.170 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "osdmap": { 2024-02-22T22:20:09.170 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-22T22:20:09.171 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_osds": 0, 2024-02-22T22:20:09.174 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-02-22T22:20:09.174 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-02-22T22:20:09.174 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-02-22T22:20:09.175 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-02-22T22:20:09.175 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-02-22T22:20:09.175 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: }, 2024-02-22T22:20:09.175 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "pgmap": { 2024-02-22T22:20:09.175 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-02-22T22:20:09.175 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-02-22T22:20:09.175 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_pools": 0, 2024-02-22T22:20:09.175 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_objects": 0, 2024-02-22T22:20:09.175 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-02-22T22:20:09.175 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-02-22T22:20:09.175 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-02-22T22:20:09.175 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "bytes_total": 0 2024-02-22T22:20:09.175 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: }, 2024-02-22T22:20:09.175 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "fsmap": { 2024-02-22T22:20:09.175 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-22T22:20:09.176 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "by_rank": [], 2024-02-22T22:20:09.176 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "up:standby": 0 2024-02-22T22:20:09.176 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: }, 2024-02-22T22:20:09.176 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "mgrmap": { 2024-02-22T22:20:09.176 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "available": false, 2024-02-22T22:20:09.176 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-02-22T22:20:09.176 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "modules": [ 2024-02-22T22:20:09.176 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "iostat", 2024-02-22T22:20:09.176 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "nfs", 2024-02-22T22:20:09.176 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "restful" 2024-02-22T22:20:09.176 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: ], 2024-02-22T22:20:09.176 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "services": {} 2024-02-22T22:20:09.176 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: }, 2024-02-22T22:20:09.176 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "servicemap": { 2024-02-22T22:20:09.177 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-22T22:20:09.177 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "modified": "2024-02-22T22:19:55.421175+0000", 2024-02-22T22:20:09.177 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "services": {} 2024-02-22T22:20:09.177 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: }, 2024-02-22T22:20:09.177 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "progress_events": {} 2024-02-22T22:20:09.177 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: } 2024-02-22T22:20:09.467 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:09 smithi049 bash[14150]: audit 2024-02-22T22:20:09.165426+0000 mon.smithi049 (mon.0) 8 : audit [DBG] from='client.? 172.21.15.49:0/3627068735' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-02-22T22:20:09.810 INFO:teuthology.orchestra.run.smithi049.stderr:mgr not available, waiting (2/15)... 2024-02-22T22:20:12.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:11 smithi049 bash[14150]: cluster 2024-02-22T22:20:11.816900+0000 mon.smithi049 (mon.0) 9 : cluster [INF] Activating manager daemon smithi049.pzczis 2024-02-22T22:20:12.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:11 smithi049 bash[14150]: cluster 2024-02-22T22:20:11.823268+0000 mon.smithi049 (mon.0) 10 : cluster [DBG] mgrmap e2: smithi049.pzczis(active, starting, since 0.00652219s) 2024-02-22T22:20:12.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:11 smithi049 bash[14150]: audit 2024-02-22T22:20:11.824472+0000 mon.smithi049 (mon.0) 11 : audit [DBG] from='mgr.14100 172.21.15.49:0/1223904343' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-02-22T22:20:12.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:11 smithi049 bash[14150]: audit 2024-02-22T22:20:11.824789+0000 mon.smithi049 (mon.0) 12 : audit [DBG] from='mgr.14100 172.21.15.49:0/1223904343' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-02-22T22:20:12.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:11 smithi049 bash[14150]: audit 2024-02-22T22:20:11.824993+0000 mon.smithi049 (mon.0) 13 : audit [DBG] from='mgr.14100 172.21.15.49:0/1223904343' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-02-22T22:20:12.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:11 smithi049 bash[14150]: audit 2024-02-22T22:20:11.825215+0000 mon.smithi049 (mon.0) 14 : audit [DBG] from='mgr.14100 172.21.15.49:0/1223904343' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mon metadata", "id": "smithi049"}]: dispatch 2024-02-22T22:20:12.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:11 smithi049 bash[14150]: audit 2024-02-22T22:20:11.825925+0000 mon.smithi049 (mon.0) 15 : audit [DBG] from='mgr.14100 172.21.15.49:0/1223904343' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mgr metadata", "who": "smithi049.pzczis", "id": "smithi049.pzczis"}]: dispatch 2024-02-22T22:20:12.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:11 smithi049 bash[14150]: cluster 2024-02-22T22:20:11.849497+0000 mon.smithi049 (mon.0) 16 : cluster [INF] Manager daemon smithi049.pzczis is now available 2024-02-22T22:20:12.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:11 smithi049 bash[14150]: audit 2024-02-22T22:20:11.866094+0000 mon.smithi049 (mon.0) 17 : audit [INF] from='mgr.14100 172.21.15.49:0/1223904343' entity='mgr.smithi049.pzczis' 2024-02-22T22:20:12.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:12 smithi049 bash[14150]: audit 2024-02-22T22:20:11.877612+0000 mon.smithi049 (mon.0) 18 : audit [INF] from='mgr.14100 172.21.15.49:0/1223904343' entity='mgr.smithi049.pzczis' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi049.pzczis/mirror_snapshot_schedule"}]: dispatch 2024-02-22T22:20:12.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:12 smithi049 bash[14150]: audit 2024-02-22T22:20:11.880742+0000 mon.smithi049 (mon.0) 19 : audit [INF] from='mgr.14100 172.21.15.49:0/1223904343' entity='mgr.smithi049.pzczis' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi049.pzczis/trash_purge_schedule"}]: dispatch 2024-02-22T22:20:12.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:12 smithi049 bash[14150]: audit 2024-02-22T22:20:11.886478+0000 mon.smithi049 (mon.0) 20 : audit [INF] from='mgr.14100 172.21.15.49:0/1223904343' entity='mgr.smithi049.pzczis' 2024-02-22T22:20:12.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:12 smithi049 bash[14150]: audit 2024-02-22T22:20:11.888449+0000 mon.smithi049 (mon.0) 21 : audit [INF] from='mgr.14100 172.21.15.49:0/1223904343' entity='mgr.smithi049.pzczis' 2024-02-22T22:20:12.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:12 smithi049 bash[14150]: cluster 2024-02-22T22:20:12.830272+0000 mon.smithi049 (mon.0) 22 : cluster [DBG] mgrmap e3: smithi049.pzczis(active, since 1.01352s) 2024-02-22T22:20:13.344 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: 2024-02-22T22:20:13.344 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: { 2024-02-22T22:20:13.344 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "fsid": "605df99c-d1d0-11ee-95c0-87774f69a715", 2024-02-22T22:20:13.344 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "health": { 2024-02-22T22:20:13.344 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-02-22T22:20:13.344 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "checks": {}, 2024-02-22T22:20:13.344 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "mutes": [] 2024-02-22T22:20:13.344 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: }, 2024-02-22T22:20:13.346 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-02-22T22:20:13.346 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "quorum": [ 2024-02-22T22:20:13.346 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: 0 2024-02-22T22:20:13.346 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: ], 2024-02-22T22:20:13.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "quorum_names": [ 2024-02-22T22:20:13.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "smithi049" 2024-02-22T22:20:13.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: ], 2024-02-22T22:20:13.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "quorum_age": 10, 2024-02-22T22:20:13.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "monmap": { 2024-02-22T22:20:13.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-22T22:20:13.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-02-22T22:20:13.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_mons": 1 2024-02-22T22:20:13.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: }, 2024-02-22T22:20:13.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "osdmap": { 2024-02-22T22:20:13.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-22T22:20:13.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_osds": 0, 2024-02-22T22:20:13.347 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-02-22T22:20:13.348 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-02-22T22:20:13.348 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-02-22T22:20:13.351 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-02-22T22:20:13.351 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-02-22T22:20:13.351 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: }, 2024-02-22T22:20:13.351 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "pgmap": { 2024-02-22T22:20:13.351 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-02-22T22:20:13.351 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-02-22T22:20:13.351 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_pools": 0, 2024-02-22T22:20:13.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_objects": 0, 2024-02-22T22:20:13.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-02-22T22:20:13.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-02-22T22:20:13.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-02-22T22:20:13.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "bytes_total": 0 2024-02-22T22:20:13.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: }, 2024-02-22T22:20:13.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "fsmap": { 2024-02-22T22:20:13.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-22T22:20:13.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "by_rank": [], 2024-02-22T22:20:13.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "up:standby": 0 2024-02-22T22:20:13.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: }, 2024-02-22T22:20:13.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "mgrmap": { 2024-02-22T22:20:13.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "available": true, 2024-02-22T22:20:13.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-02-22T22:20:13.352 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "modules": [ 2024-02-22T22:20:13.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "iostat", 2024-02-22T22:20:13.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "nfs", 2024-02-22T22:20:13.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "restful" 2024-02-22T22:20:13.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: ], 2024-02-22T22:20:13.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "services": {} 2024-02-22T22:20:13.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: }, 2024-02-22T22:20:13.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "servicemap": { 2024-02-22T22:20:13.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-22T22:20:13.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "modified": "2024-02-22T22:19:55.421175+0000", 2024-02-22T22:20:13.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "services": {} 2024-02-22T22:20:13.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: }, 2024-02-22T22:20:13.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "progress_events": {} 2024-02-22T22:20:13.353 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: } 2024-02-22T22:20:13.959 INFO:teuthology.orchestra.run.smithi049.stderr:mgr is available 2024-02-22T22:20:14.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:13 smithi049 bash[14150]: audit 2024-02-22T22:20:13.342337+0000 mon.smithi049 (mon.0) 23 : audit [DBG] from='client.? 172.21.15.49:0/1124840367' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-02-22T22:20:15.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:14 smithi049 bash[14150]: cluster 2024-02-22T22:20:13.873068+0000 mon.smithi049 (mon.0) 24 : cluster [DBG] mgrmap e4: smithi049.pzczis(active, since 2s) 2024-02-22T22:20:15.312 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: 2024-02-22T22:20:15.313 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: [global] 2024-02-22T22:20:15.313 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: fsid = 605df99c-d1d0-11ee-95c0-87774f69a715 2024-02-22T22:20:15.313 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: log_to_journald = false 2024-02-22T22:20:15.313 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: mon_osd_allow_pg_remap = true 2024-02-22T22:20:15.313 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: mon_osd_allow_primary_affinity = true 2024-02-22T22:20:15.313 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: mon_warn_on_no_sortbitwise = false 2024-02-22T22:20:15.313 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: osd_crush_chooseleaf_type = 0 2024-02-22T22:20:15.313 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: 2024-02-22T22:20:15.313 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: [mgr] 2024-02-22T22:20:15.313 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: mgr/telemetry/nag = false 2024-02-22T22:20:15.314 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: 2024-02-22T22:20:15.314 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: [osd] 2024-02-22T22:20:15.314 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: osd_map_max_advance = 10 2024-02-22T22:20:15.314 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: osd_sloppy_crc = true 2024-02-22T22:20:15.990 INFO:teuthology.orchestra.run.smithi049.stderr:Enabling cephadm module... 2024-02-22T22:20:16.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:15 smithi049 bash[14150]: audit 2024-02-22T22:20:15.309862+0000 mon.smithi049 (mon.0) 25 : audit [INF] from='client.? 172.21.15.49:0/3437152644' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-02-22T22:20:17.813 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:17 smithi049 bash[14150]: audit 2024-02-22T22:20:17.447893+0000 mon.smithi049 (mon.0) 26 : audit [INF] from='client.? 172.21.15.49:0/1628568479' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-02-22T22:20:18.898 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:18 smithi049 bash[14150]: audit 2024-02-22T22:20:17.504670+0000 mon.smithi049 (mon.0) 27 : audit [INF] from='client.? 172.21.15.49:0/1628568479' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-02-22T22:20:18.899 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:18 smithi049 bash[14150]: cluster 2024-02-22T22:20:17.504822+0000 mon.smithi049 (mon.0) 28 : cluster [DBG] mgrmap e5: smithi049.pzczis(active, since 5s) 2024-02-22T22:20:19.563 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: { 2024-02-22T22:20:19.563 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "epoch": 5, 2024-02-22T22:20:19.563 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "available": true, 2024-02-22T22:20:19.564 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "active_name": "smithi049.pzczis", 2024-02-22T22:20:19.564 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_standby": 0 2024-02-22T22:20:19.564 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: } 2024-02-22T22:20:19.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:19 smithi049 bash[14150]: audit 2024-02-22T22:20:19.562392+0000 mon.smithi049 (mon.0) 29 : audit [DBG] from='client.? 172.21.15.49:0/1371330501' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-02-22T22:20:20.191 INFO:teuthology.orchestra.run.smithi049.stderr:Waiting for the mgr to restart... 2024-02-22T22:20:20.192 INFO:teuthology.orchestra.run.smithi049.stderr:Waiting for mgr epoch 5... 2024-02-22T22:20:24.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:24 smithi049 bash[14150]: cluster 2024-02-22T22:20:24.324536+0000 mon.smithi049 (mon.0) 30 : cluster [INF] Active manager daemon smithi049.pzczis restarted 2024-02-22T22:20:24.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:24 smithi049 bash[14150]: cluster 2024-02-22T22:20:24.324953+0000 mon.smithi049 (mon.0) 31 : cluster [INF] Activating manager daemon smithi049.pzczis 2024-02-22T22:20:24.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:24 smithi049 bash[14150]: cluster 2024-02-22T22:20:24.331008+0000 mon.smithi049 (mon.0) 32 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-02-22T22:20:24.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:24 smithi049 bash[14150]: cluster 2024-02-22T22:20:24.331338+0000 mon.smithi049 (mon.0) 33 : cluster [DBG] mgrmap e6: smithi049.pzczis(active, starting, since 0.00653323s) 2024-02-22T22:20:24.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:24 smithi049 bash[14150]: audit 2024-02-22T22:20:24.333047+0000 mon.smithi049 (mon.0) 34 : audit [DBG] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mon metadata", "id": "smithi049"}]: dispatch 2024-02-22T22:20:24.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:24 smithi049 bash[14150]: audit 2024-02-22T22:20:24.334022+0000 mon.smithi049 (mon.0) 35 : audit [DBG] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mgr metadata", "who": "smithi049.pzczis", "id": "smithi049.pzczis"}]: dispatch 2024-02-22T22:20:24.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:24 smithi049 bash[14150]: audit 2024-02-22T22:20:24.335031+0000 mon.smithi049 (mon.0) 36 : audit [DBG] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-02-22T22:20:24.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:24 smithi049 bash[14150]: audit 2024-02-22T22:20:24.335250+0000 mon.smithi049 (mon.0) 37 : audit [DBG] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-02-22T22:20:24.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:24 smithi049 bash[14150]: audit 2024-02-22T22:20:24.335450+0000 mon.smithi049 (mon.0) 38 : audit [DBG] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-02-22T22:20:24.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:24 smithi049 bash[14150]: cluster 2024-02-22T22:20:24.359224+0000 mon.smithi049 (mon.0) 39 : cluster [INF] Manager daemon smithi049.pzczis is now available 2024-02-22T22:20:25.349 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: { 2024-02-22T22:20:25.349 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "mgrmap_epoch": 7, 2024-02-22T22:20:25.349 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "initialized": true 2024-02-22T22:20:25.350 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: } 2024-02-22T22:20:25.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:25 smithi049 bash[14150]: cephadm 2024-02-22T22:20:24.380692+0000 mgr.smithi049.pzczis (mgr.14116) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-02-22T22:20:25.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:25 smithi049 bash[14150]: audit 2024-02-22T22:20:24.385783+0000 mon.smithi049 (mon.0) 40 : audit [INF] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' 2024-02-22T22:20:25.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:25 smithi049 bash[14150]: audit 2024-02-22T22:20:24.511394+0000 mon.smithi049 (mon.0) 41 : audit [INF] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' 2024-02-22T22:20:25.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:25 smithi049 bash[14150]: audit 2024-02-22T22:20:24.513638+0000 mon.smithi049 (mon.0) 42 : audit [DBG] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:20:25.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:25 smithi049 bash[14150]: audit 2024-02-22T22:20:24.519001+0000 mon.smithi049 (mon.0) 43 : audit [DBG] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:20:25.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:25 smithi049 bash[14150]: audit 2024-02-22T22:20:24.523022+0000 mon.smithi049 (mon.0) 44 : audit [DBG] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:20:25.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:25 smithi049 bash[14150]: audit 2024-02-22T22:20:24.546375+0000 mon.smithi049 (mon.0) 45 : audit [INF] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi049.pzczis/mirror_snapshot_schedule"}]: dispatch 2024-02-22T22:20:25.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:25 smithi049 bash[14150]: audit 2024-02-22T22:20:24.551134+0000 mon.smithi049 (mon.0) 46 : audit [INF] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi049.pzczis/trash_purge_schedule"}]: dispatch 2024-02-22T22:20:25.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:25 smithi049 bash[14150]: cluster 2024-02-22T22:20:25.335670+0000 mon.smithi049 (mon.0) 47 : cluster [DBG] mgrmap e7: smithi049.pzczis(active, since 1.01085s) 2024-02-22T22:20:26.186 INFO:teuthology.orchestra.run.smithi049.stderr:mgr epoch 5 is available 2024-02-22T22:20:26.186 INFO:teuthology.orchestra.run.smithi049.stderr:Setting orchestrator backend to cephadm... 2024-02-22T22:20:26.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:26 smithi049 bash[14150]: audit 2024-02-22T22:20:25.334918+0000 mgr.smithi049.pzczis (mgr.14116) 2 : audit [DBG] from='client.14120 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-02-22T22:20:26.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:26 smithi049 bash[14150]: audit 2024-02-22T22:20:25.348690+0000 mgr.smithi049.pzczis (mgr.14116) 3 : audit [DBG] from='client.14120 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-02-22T22:20:27.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:27 smithi049 bash[14150]: cluster 2024-02-22T22:20:26.392165+0000 mon.smithi049 (mon.0) 48 : cluster [DBG] mgrmap e8: smithi049.pzczis(active, since 2s) 2024-02-22T22:20:28.819 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:28 smithi049 bash[14150]: audit 2024-02-22T22:20:27.481766+0000 mgr.smithi049.pzczis (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-22T22:20:28.819 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:28 smithi049 bash[14150]: audit 2024-02-22T22:20:27.491106+0000 mon.smithi049 (mon.0) 49 : audit [INF] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' 2024-02-22T22:20:28.819 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:28 smithi049 bash[14150]: audit 2024-02-22T22:20:27.505479+0000 mon.smithi049 (mon.0) 50 : audit [DBG] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:20:29.412 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: value unchanged 2024-02-22T22:20:29.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:29 smithi049 bash[14150]: audit 2024-02-22T22:20:29.411837+0000 mgr.smithi049.pzczis (mgr.14116) 5 : audit [DBG] from='client.14128 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:20:30.076 INFO:teuthology.orchestra.run.smithi049.stderr:Generating ssh key... 2024-02-22T22:20:31.870 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:31 smithi049 bash[14150]: audit 2024-02-22T22:20:31.404786+0000 mgr.smithi049.pzczis (mgr.14116) 6 : audit [DBG] from='client.14130 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:20:31.870 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:31 smithi049 bash[14150]: cephadm 2024-02-22T22:20:31.405181+0000 mgr.smithi049.pzczis (mgr.14116) 7 : cephadm [INF] Generating ssh key... 2024-02-22T22:20:32.928 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:32 smithi049 bash[14150]: audit 2024-02-22T22:20:31.654633+0000 mon.smithi049 (mon.0) 51 : audit [INF] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' 2024-02-22T22:20:32.929 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:32 smithi049 bash[14150]: audit 2024-02-22T22:20:31.659023+0000 mon.smithi049 (mon.0) 52 : audit [INF] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' 2024-02-22T22:20:33.522 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC1tgz5mGtWHSGLHbmEDz7VfDfo+vH+Oe9e1+sEYKuoKyC22mQXYoAcmqeoZ03KpOxmMZCAwmP/5E1feqINJR9TlRe0jXd4gx2sFfKxzL6u4YYf+bzclo5aHxiRgbvldqcQCOBBS+iC56SlD7K6kHGXBh+Mc8NfUztTSF8e1sWzpboEADm72W1yBuSRziTAswyHvnTp4S9ww/Z8/a5EwMXOXYPcHOank2fwHjxqboWInz9NeBvR47N7x0jmGBoOBxaAdncd9ZfA9tD11raX+YCh6X26vWGCUXYkCSL+cN0SYrJhIfMkq8R/ZHfL7YuS5gKyeI/q1EcN2lzNgbv8ZsFl/mv7pP7ArNdwWEJuf6idp/Rr2Z6RNTCWG4uc0chVqh9wpxQpUIGBn2wdhbJaqgf1LYxxjh8v7yQsMmr4bwgc0tqN4/9MbWqWljUx1qyGvoYsL4GHoGgZvELc95vRbpxBl3VxWnxxTlVNHLZ6JgQvU0/0HYzKmoVeHTtSGFXW9G0= ceph-605df99c-d1d0-11ee-95c0-87774f69a715 2024-02-22T22:20:33.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:33 smithi049 bash[14150]: audit 2024-02-22T22:20:33.521269+0000 mgr.smithi049.pzczis (mgr.14116) 8 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:20:34.161 INFO:teuthology.orchestra.run.smithi049.stderr:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-02-22T22:20:34.161 INFO:teuthology.orchestra.run.smithi049.stderr:Adding key to root@localhost authorized_keys... 2024-02-22T22:20:34.161 INFO:teuthology.orchestra.run.smithi049.stderr:Adding host smithi049... 2024-02-22T22:20:35.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:35 smithi049 bash[14150]: audit 2024-02-22T22:20:35.494077+0000 mgr.smithi049.pzczis (mgr.14116) 9 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi049", "addr": "172.21.15.49", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:20:36.344 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: Added host 'smithi049' with addr '172.21.15.49' 2024-02-22T22:20:37.215 INFO:teuthology.orchestra.run.smithi049.stderr:Deploying mon service with default placement... 2024-02-22T22:20:37.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:37 smithi049 bash[14150]: audit 2024-02-22T22:20:36.342656+0000 mon.smithi049 (mon.0) 53 : audit [INF] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' 2024-02-22T22:20:37.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:37 smithi049 bash[14150]: cephadm 2024-02-22T22:20:36.343305+0000 mgr.smithi049.pzczis (mgr.14116) 10 : cephadm [INF] Added host smithi049 2024-02-22T22:20:37.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:37 smithi049 bash[14150]: audit 2024-02-22T22:20:36.363940+0000 mon.smithi049 (mon.0) 54 : audit [DBG] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:20:39.169 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: Scheduled mon update... 2024-02-22T22:20:40.175 INFO:teuthology.orchestra.run.smithi049.stderr:Deploying mgr service with default placement... 2024-02-22T22:20:40.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:40 smithi049 bash[14150]: audit 2024-02-22T22:20:39.160896+0000 mgr.smithi049.pzczis (mgr.14116) 11 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:20:40.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:40 smithi049 bash[14150]: cephadm 2024-02-22T22:20:39.164014+0000 mgr.smithi049.pzczis (mgr.14116) 12 : cephadm [INF] Saving service mon spec with placement count:5 2024-02-22T22:20:40.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:40 smithi049 bash[14150]: audit 2024-02-22T22:20:39.168324+0000 mon.smithi049 (mon.0) 55 : audit [INF] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' 2024-02-22T22:20:40.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:40 smithi049 bash[14150]: audit 2024-02-22T22:20:39.783535+0000 mon.smithi049 (mon.0) 56 : audit [INF] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' 2024-02-22T22:20:40.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:40 smithi049 bash[14150]: audit 2024-02-22T22:20:40.052299+0000 mon.smithi049 (mon.0) 57 : audit [INF] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' 2024-02-22T22:20:41.644 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: Scheduled mgr update... 2024-02-22T22:20:42.329 INFO:teuthology.orchestra.run.smithi049.stderr:Deploying crash service with default placement... 2024-02-22T22:20:42.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:42 smithi049 bash[14150]: audit 2024-02-22T22:20:41.636412+0000 mgr.smithi049.pzczis (mgr.14116) 13 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:20:42.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:42 smithi049 bash[14150]: cephadm 2024-02-22T22:20:41.638567+0000 mgr.smithi049.pzczis (mgr.14116) 14 : cephadm [INF] Saving service mgr spec with placement count:2 2024-02-22T22:20:42.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:42 smithi049 bash[14150]: audit 2024-02-22T22:20:41.643040+0000 mon.smithi049 (mon.0) 58 : audit [INF] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' 2024-02-22T22:20:43.705 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: Scheduled crash update... 2024-02-22T22:20:44.267 INFO:teuthology.orchestra.run.smithi049.stderr:Deploying prometheus service with default placement... 2024-02-22T22:20:45.000 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:44 smithi049 bash[14150]: audit 2024-02-22T22:20:43.698361+0000 mgr.smithi049.pzczis (mgr.14116) 15 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:20:45.001 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:44 smithi049 bash[14150]: cephadm 2024-02-22T22:20:43.700781+0000 mgr.smithi049.pzczis (mgr.14116) 16 : cephadm [INF] Saving service crash spec with placement * 2024-02-22T22:20:45.001 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:44 smithi049 bash[14150]: audit 2024-02-22T22:20:43.703916+0000 mon.smithi049 (mon.0) 59 : audit [INF] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' 2024-02-22T22:20:45.001 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:44 smithi049 bash[14150]: cluster 2024-02-22T22:20:44.336922+0000 mgr.smithi049.pzczis (mgr.14116) 17 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:20:45.680 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: Scheduled prometheus update... 2024-02-22T22:20:46.358 INFO:teuthology.orchestra.run.smithi049.stderr:Deploying grafana service with default placement... 2024-02-22T22:20:46.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:46 smithi049 bash[14150]: audit 2024-02-22T22:20:45.190028+0000 mon.smithi049 (mon.0) 60 : audit [INF] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' 2024-02-22T22:20:46.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:46 smithi049 bash[14150]: audit 2024-02-22T22:20:45.679378+0000 mon.smithi049 (mon.0) 61 : audit [INF] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' 2024-02-22T22:20:47.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:47 smithi049 bash[14150]: audit 2024-02-22T22:20:45.672694+0000 mgr.smithi049.pzczis (mgr.14116) 18 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:20:47.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:47 smithi049 bash[14150]: cephadm 2024-02-22T22:20:45.674978+0000 mgr.smithi049.pzczis (mgr.14116) 19 : cephadm [INF] Saving service prometheus spec with placement count:1 2024-02-22T22:20:47.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:47 smithi049 bash[14150]: cluster 2024-02-22T22:20:46.337374+0000 mgr.smithi049.pzczis (mgr.14116) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:20:47.785 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: Scheduled grafana update... 2024-02-22T22:20:48.448 INFO:teuthology.orchestra.run.smithi049.stderr:Deploying node-exporter service with default placement... 2024-02-22T22:20:49.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:48 smithi049 bash[14150]: audit 2024-02-22T22:20:47.777267+0000 mgr.smithi049.pzczis (mgr.14116) 21 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:20:49.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:48 smithi049 bash[14150]: cephadm 2024-02-22T22:20:47.779466+0000 mgr.smithi049.pzczis (mgr.14116) 22 : cephadm [INF] Saving service grafana spec with placement count:1 2024-02-22T22:20:49.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:48 smithi049 bash[14150]: audit 2024-02-22T22:20:47.784076+0000 mon.smithi049 (mon.0) 62 : audit [INF] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' 2024-02-22T22:20:49.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:48 smithi049 bash[14150]: cluster 2024-02-22T22:20:48.337831+0000 mgr.smithi049.pzczis (mgr.14116) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:20:49.813 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: Scheduled node-exporter update... 2024-02-22T22:20:50.494 INFO:teuthology.orchestra.run.smithi049.stderr:Deploying alertmanager service with default placement... 2024-02-22T22:20:51.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:50 smithi049 bash[14150]: audit 2024-02-22T22:20:49.806472+0000 mgr.smithi049.pzczis (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-22T22:20:51.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:50 smithi049 bash[14150]: cephadm 2024-02-22T22:20:49.808717+0000 mgr.smithi049.pzczis (mgr.14116) 25 : cephadm [INF] Saving service node-exporter spec with placement * 2024-02-22T22:20:51.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:50 smithi049 bash[14150]: audit 2024-02-22T22:20:49.811791+0000 mon.smithi049 (mon.0) 63 : audit [INF] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' 2024-02-22T22:20:51.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:50 smithi049 bash[14150]: cluster 2024-02-22T22:20:50.338387+0000 mgr.smithi049.pzczis (mgr.14116) 26 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:20:51.835 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: Scheduled alertmanager update... 2024-02-22T22:20:52.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:52 smithi049 bash[14150]: audit 2024-02-22T22:20:51.826917+0000 mgr.smithi049.pzczis (mgr.14116) 27 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:20:52.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:52 smithi049 bash[14150]: cephadm 2024-02-22T22:20:51.829012+0000 mgr.smithi049.pzczis (mgr.14116) 28 : cephadm [INF] Saving service alertmanager spec with placement count:1 2024-02-22T22:20:52.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:52 smithi049 bash[14150]: audit 2024-02-22T22:20:51.834015+0000 mon.smithi049 (mon.0) 64 : audit [INF] from='mgr.14116 172.21.15.49:0/1152113675' entity='mgr.smithi049.pzczis' 2024-02-22T22:20:52.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:52 smithi049 bash[14150]: cluster 2024-02-22T22:20:52.338890+0000 mgr.smithi049.pzczis (mgr.14116) 29 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:20:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:55 smithi049 bash[14150]: cluster 2024-02-22T22:20:54.339192+0000 mgr.smithi049.pzczis (mgr.14116) 30 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:20:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:55 smithi049 bash[14150]: audit 2024-02-22T22:20:54.481935+0000 mon.smithi049 (mon.0) 65 : audit [INF] from='client.? 172.21.15.49:0/851612277' entity='client.admin' 2024-02-22T22:20:57.409 INFO:teuthology.orchestra.run.smithi049.stderr:Enabling the dashboard module... 2024-02-22T22:20:57.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:57 smithi049 bash[14150]: cluster 2024-02-22T22:20:56.339645+0000 mgr.smithi049.pzczis (mgr.14116) 31 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:20:57.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:57 smithi049 bash[14150]: audit 2024-02-22T22:20:56.748817+0000 mon.smithi049 (mon.0) 66 : audit [INF] from='client.? 172.21.15.49:0/3699067513' entity='client.admin' 2024-02-22T22:20:59.809 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:59 smithi049 bash[14150]: cluster 2024-02-22T22:20:58.340041+0000 mgr.smithi049.pzczis (mgr.14116) 32 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:20:59.809 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:20:59 smithi049 bash[14150]: audit 2024-02-22T22:20:58.823541+0000 mon.smithi049 (mon.0) 67 : audit [INF] from='client.? 172.21.15.49:0/452880928' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-02-22T22:21:00.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:00 smithi049 bash[14150]: audit 2024-02-22T22:20:59.490883+0000 mon.smithi049 (mon.0) 68 : audit [INF] from='client.? 172.21.15.49:0/452880928' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-02-22T22:21:00.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:00 smithi049 bash[14150]: cluster 2024-02-22T22:20:59.490954+0000 mon.smithi049 (mon.0) 69 : cluster [DBG] mgrmap e9: smithi049.pzczis(active, since 35s) 2024-02-22T22:21:01.795 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: { 2024-02-22T22:21:01.796 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "epoch": 9, 2024-02-22T22:21:01.796 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "available": true, 2024-02-22T22:21:01.796 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "active_name": "smithi049.pzczis", 2024-02-22T22:21:01.796 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "num_standby": 0 2024-02-22T22:21:01.796 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: } 2024-02-22T22:21:02.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:01 smithi049 bash[14150]: audit 2024-02-22T22:21:01.794715+0000 mon.smithi049 (mon.0) 70 : audit [DBG] from='client.? 172.21.15.49:0/3781015809' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-02-22T22:21:02.453 INFO:teuthology.orchestra.run.smithi049.stderr:Waiting for the mgr to restart... 2024-02-22T22:21:02.453 INFO:teuthology.orchestra.run.smithi049.stderr:Waiting for mgr epoch 9... 2024-02-22T22:21:06.486 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:06 smithi049 bash[14150]: cluster 2024-02-22T22:21:06.245177+0000 mon.smithi049 (mon.0) 71 : cluster [INF] Active manager daemon smithi049.pzczis restarted 2024-02-22T22:21:06.486 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:06 smithi049 bash[14150]: cluster 2024-02-22T22:21:06.245608+0000 mon.smithi049 (mon.0) 72 : cluster [INF] Activating manager daemon smithi049.pzczis 2024-02-22T22:21:06.486 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:06 smithi049 bash[14150]: cluster 2024-02-22T22:21:06.251812+0000 mon.smithi049 (mon.0) 73 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-02-22T22:21:06.486 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:06 smithi049 bash[14150]: cluster 2024-02-22T22:21:06.252021+0000 mon.smithi049 (mon.0) 74 : cluster [DBG] mgrmap e10: smithi049.pzczis(active, starting, since 0.00658205s) 2024-02-22T22:21:06.486 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:06 smithi049 bash[14150]: audit 2024-02-22T22:21:06.254130+0000 mon.smithi049 (mon.0) 75 : audit [DBG] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mon metadata", "id": "smithi049"}]: dispatch 2024-02-22T22:21:06.486 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:06 smithi049 bash[14150]: audit 2024-02-22T22:21:06.255168+0000 mon.smithi049 (mon.0) 76 : audit [DBG] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mgr metadata", "who": "smithi049.pzczis", "id": "smithi049.pzczis"}]: dispatch 2024-02-22T22:21:06.486 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:06 smithi049 bash[14150]: audit 2024-02-22T22:21:06.256183+0000 mon.smithi049 (mon.0) 77 : audit [DBG] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-02-22T22:21:06.486 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:06 smithi049 bash[14150]: audit 2024-02-22T22:21:06.256470+0000 mon.smithi049 (mon.0) 78 : audit [DBG] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-02-22T22:21:06.486 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:06 smithi049 bash[14150]: audit 2024-02-22T22:21:06.256755+0000 mon.smithi049 (mon.0) 79 : audit [DBG] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-02-22T22:21:06.486 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:06 smithi049 bash[14150]: cluster 2024-02-22T22:21:06.283110+0000 mon.smithi049 (mon.0) 80 : cluster [INF] Manager daemon smithi049.pzczis is now available 2024-02-22T22:21:07.272 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: { 2024-02-22T22:21:07.272 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "mgrmap_epoch": 11, 2024-02-22T22:21:07.272 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: "initialized": true 2024-02-22T22:21:07.272 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: } 2024-02-22T22:21:07.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:07 smithi049 bash[14150]: audit 2024-02-22T22:21:06.430333+0000 mon.smithi049 (mon.0) 81 : audit [DBG] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:21:07.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:07 smithi049 bash[14150]: audit 2024-02-22T22:21:06.435741+0000 mon.smithi049 (mon.0) 82 : audit [DBG] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:21:07.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:07 smithi049 bash[14150]: audit 2024-02-22T22:21:06.472735+0000 mon.smithi049 (mon.0) 83 : audit [INF] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi049.pzczis/mirror_snapshot_schedule"}]: dispatch 2024-02-22T22:21:07.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:07 smithi049 bash[14150]: audit 2024-02-22T22:21:06.479579+0000 mon.smithi049 (mon.0) 84 : audit [INF] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi049.pzczis/trash_purge_schedule"}]: dispatch 2024-02-22T22:21:07.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:07 smithi049 bash[14150]: cluster 2024-02-22T22:21:07.256163+0000 mon.smithi049 (mon.0) 85 : cluster [DBG] mgrmap e11: smithi049.pzczis(active, since 1.01071s) 2024-02-22T22:21:08.002 INFO:teuthology.orchestra.run.smithi049.stderr:mgr epoch 9 is available 2024-02-22T22:21:08.002 INFO:teuthology.orchestra.run.smithi049.stderr:Generating a dashboard self-signed certificate... 2024-02-22T22:21:08.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:08 smithi049 bash[14150]: audit 2024-02-22T22:21:07.255073+0000 mgr.smithi049.pzczis (mgr.14156) 1 : audit [DBG] from='client.14160 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-02-22T22:21:08.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:08 smithi049 bash[14150]: audit 2024-02-22T22:21:07.270957+0000 mgr.smithi049.pzczis (mgr.14156) 2 : audit [DBG] from='client.14160 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-02-22T22:21:09.622 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: Self-signed certificate created 2024-02-22T22:21:09.676 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:09 smithi049 bash[14150]: cluster 2024-02-22T22:21:08.304835+0000 mon.smithi049 (mon.0) 86 : cluster [DBG] mgrmap e12: smithi049.pzczis(active, since 2s) 2024-02-22T22:21:10.357 INFO:teuthology.orchestra.run.smithi049.stderr:Creating initial admin user... 2024-02-22T22:21:10.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:10 smithi049 bash[14150]: audit 2024-02-22T22:21:09.318043+0000 mgr.smithi049.pzczis (mgr.14156) 3 : audit [DBG] from='client.14166 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:21:10.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:10 smithi049 bash[14150]: audit 2024-02-22T22:21:09.619640+0000 mon.smithi049 (mon.0) 87 : audit [INF] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' 2024-02-22T22:21:10.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:10 smithi049 bash[14150]: audit 2024-02-22T22:21:09.621844+0000 mon.smithi049 (mon.0) 88 : audit [INF] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' 2024-02-22T22:21:12.045 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: {"username": "admin", "password": "$2b$12$qoUMjb5k96kf/JWeIX2n/uOpoNQLPWiyvanw0FekOpjvMCIx.jKam", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1708640472, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-02-22T22:21:12.757 INFO:teuthology.orchestra.run.smithi049.stderr:Fetching dashboard port number... 2024-02-22T22:21:13.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:13 smithi049 bash[14150]: audit 2024-02-22T22:21:11.789320+0000 mgr.smithi049.pzczis (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-22T22:21:13.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:13 smithi049 bash[14150]: audit 2024-02-22T22:21:12.044398+0000 mon.smithi049 (mon.0) 89 : audit [INF] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' 2024-02-22T22:21:14.053 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: 8443 2024-02-22T22:21:14.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:14 smithi049 bash[14150]: cluster 2024-02-22T22:21:13.046809+0000 mon.smithi049 (mon.0) 90 : cluster [DBG] mgrmap e13: smithi049.pzczis(active, since 6s) 2024-02-22T22:21:14.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:14 smithi049 bash[14150]: audit 2024-02-22T22:21:13.492235+0000 mon.smithi049 (mon.0) 91 : audit [INF] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' 2024-02-22T22:21:14.739 INFO:teuthology.orchestra.run.smithi049.stderr:firewalld does not appear to be present 2024-02-22T22:21:14.739 INFO:teuthology.orchestra.run.smithi049.stderr:Not possible to open ports <[8443]>. firewalld.service is not available 2024-02-22T22:21:14.742 INFO:teuthology.orchestra.run.smithi049.stderr:Ceph Dashboard is now available at: 2024-02-22T22:21:14.743 INFO:teuthology.orchestra.run.smithi049.stderr: 2024-02-22T22:21:14.743 INFO:teuthology.orchestra.run.smithi049.stderr: URL: https://smithi049.front.sepia.ceph.com:8443/ 2024-02-22T22:21:14.743 INFO:teuthology.orchestra.run.smithi049.stderr: User: admin 2024-02-22T22:21:14.743 INFO:teuthology.orchestra.run.smithi049.stderr: Password: xodl89xpwa 2024-02-22T22:21:14.743 INFO:teuthology.orchestra.run.smithi049.stderr: 2024-02-22T22:21:14.743 INFO:teuthology.orchestra.run.smithi049.stderr:Enabling autotune for osd_memory_target 2024-02-22T22:21:15.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:15 smithi049 bash[14150]: audit 2024-02-22T22:21:14.052674+0000 mon.smithi049 (mon.0) 92 : audit [DBG] from='client.? 172.21.15.49:0/27894885' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-02-22T22:21:18.688 INFO:teuthology.orchestra.run.smithi049.stderr:/usr/bin/ceph: set mgr/dashboard/cluster/status 2024-02-22T22:21:19.606 INFO:teuthology.orchestra.run.smithi049.stderr:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-02-22T22:21:19.607 INFO:teuthology.orchestra.run.smithi049.stderr: 2024-02-22T22:21:19.607 INFO:teuthology.orchestra.run.smithi049.stderr: sudo /home/ubuntu/cephtest/cephadm shell --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-02-22T22:21:19.607 INFO:teuthology.orchestra.run.smithi049.stderr: 2024-02-22T22:21:19.607 INFO:teuthology.orchestra.run.smithi049.stderr:Or, if you are only running a single cluster on this host: 2024-02-22T22:21:19.607 INFO:teuthology.orchestra.run.smithi049.stderr: 2024-02-22T22:21:19.607 INFO:teuthology.orchestra.run.smithi049.stderr: sudo /home/ubuntu/cephtest/cephadm shell 2024-02-22T22:21:19.607 INFO:teuthology.orchestra.run.smithi049.stderr: 2024-02-22T22:21:19.607 INFO:teuthology.orchestra.run.smithi049.stderr:Please consider enabling telemetry to help improve Ceph: 2024-02-22T22:21:19.607 INFO:teuthology.orchestra.run.smithi049.stderr: 2024-02-22T22:21:19.607 INFO:teuthology.orchestra.run.smithi049.stderr: ceph telemetry on 2024-02-22T22:21:19.607 INFO:teuthology.orchestra.run.smithi049.stderr: 2024-02-22T22:21:19.607 INFO:teuthology.orchestra.run.smithi049.stderr:For more information see: 2024-02-22T22:21:19.607 INFO:teuthology.orchestra.run.smithi049.stderr: 2024-02-22T22:21:19.607 INFO:teuthology.orchestra.run.smithi049.stderr: https://docs.ceph.com/en/pacific/mgr/telemetry/ 2024-02-22T22:21:19.608 INFO:teuthology.orchestra.run.smithi049.stderr: 2024-02-22T22:21:19.608 INFO:teuthology.orchestra.run.smithi049.stderr:Bootstrap complete. 2024-02-22T22:21:19.647 INFO:tasks.cephadm:Fetching config... 2024-02-22T22:21:19.647 DEBUG:teuthology.orchestra.run.smithi049:> set -ex 2024-02-22T22:21:19.647 DEBUG:teuthology.orchestra.run.smithi049:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-02-22T22:21:19.654 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-02-22T22:21:19.654 DEBUG:teuthology.orchestra.run.smithi049:> set -ex 2024-02-22T22:21:19.654 DEBUG:teuthology.orchestra.run.smithi049:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-02-22T22:21:19.702 INFO:tasks.cephadm:Fetching mon keyring... 2024-02-22T22:21:19.703 DEBUG:teuthology.orchestra.run.smithi049:> set -ex 2024-02-22T22:21:19.703 DEBUG:teuthology.orchestra.run.smithi049:> sudo dd if=/var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/mon.smithi049/keyring of=/dev/stdout 2024-02-22T22:21:19.757 INFO:tasks.cephadm:Fetching pub ssh key... 2024-02-22T22:21:19.757 DEBUG:teuthology.orchestra.run.smithi049:> set -ex 2024-02-22T22:21:19.758 DEBUG:teuthology.orchestra.run.smithi049:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-02-22T22:21:19.808 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-02-22T22:21:19.808 DEBUG:teuthology.orchestra.run.smithi049:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC1tgz5mGtWHSGLHbmEDz7VfDfo+vH+Oe9e1+sEYKuoKyC22mQXYoAcmqeoZ03KpOxmMZCAwmP/5E1feqINJR9TlRe0jXd4gx2sFfKxzL6u4YYf+bzclo5aHxiRgbvldqcQCOBBS+iC56SlD7K6kHGXBh+Mc8NfUztTSF8e1sWzpboEADm72W1yBuSRziTAswyHvnTp4S9ww/Z8/a5EwMXOXYPcHOank2fwHjxqboWInz9NeBvR47N7x0jmGBoOBxaAdncd9ZfA9tD11raX+YCh6X26vWGCUXYkCSL+cN0SYrJhIfMkq8R/ZHfL7YuS5gKyeI/q1EcN2lzNgbv8ZsFl/mv7pP7ArNdwWEJuf6idp/Rr2Z6RNTCWG4uc0chVqh9wpxQpUIGBn2wdhbJaqgf1LYxxjh8v7yQsMmr4bwgc0tqN4/9MbWqWljUx1qyGvoYsL4GHoGgZvELc95vRbpxBl3VxWnxxTlVNHLZ6JgQvU0/0HYzKmoVeHTtSGFXW9G0= ceph-605df99c-d1d0-11ee-95c0-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-02-22T22:21:19.875 INFO:teuthology.orchestra.run.smithi049.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC1tgz5mGtWHSGLHbmEDz7VfDfo+vH+Oe9e1+sEYKuoKyC22mQXYoAcmqeoZ03KpOxmMZCAwmP/5E1feqINJR9TlRe0jXd4gx2sFfKxzL6u4YYf+bzclo5aHxiRgbvldqcQCOBBS+iC56SlD7K6kHGXBh+Mc8NfUztTSF8e1sWzpboEADm72W1yBuSRziTAswyHvnTp4S9ww/Z8/a5EwMXOXYPcHOank2fwHjxqboWInz9NeBvR47N7x0jmGBoOBxaAdncd9ZfA9tD11raX+YCh6X26vWGCUXYkCSL+cN0SYrJhIfMkq8R/ZHfL7YuS5gKyeI/q1EcN2lzNgbv8ZsFl/mv7pP7ArNdwWEJuf6idp/Rr2Z6RNTCWG4uc0chVqh9wpxQpUIGBn2wdhbJaqgf1LYxxjh8v7yQsMmr4bwgc0tqN4/9MbWqWljUx1qyGvoYsL4GHoGgZvELc95vRbpxBl3VxWnxxTlVNHLZ6JgQvU0/0HYzKmoVeHTtSGFXW9G0= ceph-605df99c-d1d0-11ee-95c0-87774f69a715 2024-02-22T22:21:19.885 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:19 smithi049 bash[14150]: audit 2024-02-22T22:21:18.684720+0000 mon.smithi049 (mon.0) 93 : audit [INF] from='client.? 172.21.15.49:0/3779107936' entity='client.admin' 2024-02-22T22:21:19.886 DEBUG:teuthology.orchestra.run.smithi195:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC1tgz5mGtWHSGLHbmEDz7VfDfo+vH+Oe9e1+sEYKuoKyC22mQXYoAcmqeoZ03KpOxmMZCAwmP/5E1feqINJR9TlRe0jXd4gx2sFfKxzL6u4YYf+bzclo5aHxiRgbvldqcQCOBBS+iC56SlD7K6kHGXBh+Mc8NfUztTSF8e1sWzpboEADm72W1yBuSRziTAswyHvnTp4S9ww/Z8/a5EwMXOXYPcHOank2fwHjxqboWInz9NeBvR47N7x0jmGBoOBxaAdncd9ZfA9tD11raX+YCh6X26vWGCUXYkCSL+cN0SYrJhIfMkq8R/ZHfL7YuS5gKyeI/q1EcN2lzNgbv8ZsFl/mv7pP7ArNdwWEJuf6idp/Rr2Z6RNTCWG4uc0chVqh9wpxQpUIGBn2wdhbJaqgf1LYxxjh8v7yQsMmr4bwgc0tqN4/9MbWqWljUx1qyGvoYsL4GHoGgZvELc95vRbpxBl3VxWnxxTlVNHLZ6JgQvU0/0HYzKmoVeHTtSGFXW9G0= ceph-605df99c-d1d0-11ee-95c0-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-02-22T22:21:19.910 INFO:teuthology.orchestra.run.smithi195.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC1tgz5mGtWHSGLHbmEDz7VfDfo+vH+Oe9e1+sEYKuoKyC22mQXYoAcmqeoZ03KpOxmMZCAwmP/5E1feqINJR9TlRe0jXd4gx2sFfKxzL6u4YYf+bzclo5aHxiRgbvldqcQCOBBS+iC56SlD7K6kHGXBh+Mc8NfUztTSF8e1sWzpboEADm72W1yBuSRziTAswyHvnTp4S9ww/Z8/a5EwMXOXYPcHOank2fwHjxqboWInz9NeBvR47N7x0jmGBoOBxaAdncd9ZfA9tD11raX+YCh6X26vWGCUXYkCSL+cN0SYrJhIfMkq8R/ZHfL7YuS5gKyeI/q1EcN2lzNgbv8ZsFl/mv7pP7ArNdwWEJuf6idp/Rr2Z6RNTCWG4uc0chVqh9wpxQpUIGBn2wdhbJaqgf1LYxxjh8v7yQsMmr4bwgc0tqN4/9MbWqWljUx1qyGvoYsL4GHoGgZvELc95vRbpxBl3VxWnxxTlVNHLZ6JgQvU0/0HYzKmoVeHTtSGFXW9G0= ceph-605df99c-d1d0-11ee-95c0-87774f69a715 2024-02-22T22:21:19.921 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-02-22T22:21:24.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:24 smithi049 bash[14150]: audit 2024-02-22T22:21:23.142324+0000 mon.smithi049 (mon.0) 94 : audit [INF] from='client.? 172.21.15.49:0/4028027153' entity='client.admin' 2024-02-22T22:21:24.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:24 smithi049 bash[14150]: audit 2024-02-22T22:21:23.840203+0000 mon.smithi049 (mon.0) 95 : audit [INF] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' 2024-02-22T22:21:24.588 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-02-22T22:21:24.588 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-02-22T22:21:25.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:25 smithi049 bash[14150]: audit 2024-02-22T22:21:24.192354+0000 mon.smithi049 (mon.0) 96 : audit [INF] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd/host:smithi049", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:21:25.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:25 smithi049 bash[14150]: audit 2024-02-22T22:21:24.196758+0000 mon.smithi049 (mon.0) 97 : audit [INF] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' 2024-02-22T22:21:25.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:25 smithi049 bash[14150]: cephadm 2024-02-22T22:21:24.211097+0000 mgr.smithi049.pzczis (mgr.14156) 5 : cephadm [INF] Deploying daemon alertmanager.smithi049 on smithi049 2024-02-22T22:21:27.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:27 smithi049 bash[14150]: cluster 2024-02-22T22:21:26.258051+0000 mgr.smithi049.pzczis (mgr.14156) 6 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:21:29.051 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi195 2024-02-22T22:21:29.051 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-02-22T22:21:29.051 DEBUG:teuthology.orchestra.run.smithi195:> dd of=/etc/ceph/ceph.conf 2024-02-22T22:21:29.059 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-02-22T22:21:29.059 DEBUG:teuthology.orchestra.run.smithi195:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-02-22T22:21:29.108 INFO:tasks.cephadm:Adding host smithi195 to orchestrator... 2024-02-22T22:21:29.108 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch host add smithi195 2024-02-22T22:21:29.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:29 smithi049 bash[14150]: audit 2024-02-22T22:21:28.173922+0000 mgr.smithi049.pzczis (mgr.14156) 7 : 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-22T22:21:29.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:29 smithi049 bash[14150]: audit 2024-02-22T22:21:28.177535+0000 mon.smithi049 (mon.0) 98 : audit [INF] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' 2024-02-22T22:21:29.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:29 smithi049 bash[14150]: cluster 2024-02-22T22:21:28.258490+0000 mgr.smithi049.pzczis (mgr.14156) 8 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:21:31.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:31 smithi049 bash[14150]: cluster 2024-02-22T22:21:30.258886+0000 mgr.smithi049.pzczis (mgr.14156) 9 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:21:33.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:33 smithi049 bash[14150]: cluster 2024-02-22T22:21:32.259338+0000 mgr.smithi049.pzczis (mgr.14156) 10 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:21:35.603 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:35 smithi049 bash[14150]: cluster 2024-02-22T22:21:34.259726+0000 mgr.smithi049.pzczis (mgr.14156) 11 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:21:36.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:36 smithi049 bash[14150]: audit 2024-02-22T22:21:35.347758+0000 mon.smithi049 (mon.0) 99 : audit [INF] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' 2024-02-22T22:21:36.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:36 smithi049 bash[14150]: audit 2024-02-22T22:21:35.350970+0000 mon.smithi049 (mon.0) 100 : audit [INF] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi049", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-22T22:21:36.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:36 smithi049 bash[14150]: audit 2024-02-22T22:21:35.353649+0000 mon.smithi049 (mon.0) 101 : audit [INF] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi049", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-02-22T22:21:36.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:36 smithi049 bash[14150]: audit 2024-02-22T22:21:35.354834+0000 mon.smithi049 (mon.0) 102 : audit [DBG] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:21:36.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:36 smithi049 bash[14150]: cephadm 2024-02-22T22:21:35.355909+0000 mgr.smithi049.pzczis (mgr.14156) 12 : cephadm [INF] Deploying daemon crash.smithi049 on smithi049 2024-02-22T22:21:37.848 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:37 smithi049 bash[14150]: cluster 2024-02-22T22:21:36.260008+0000 mgr.smithi049.pzczis (mgr.14156) 13 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:21:37.848 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:37 smithi049 bash[14150]: audit 2024-02-22T22:21:36.465306+0000 mon.smithi049 (mon.0) 103 : audit [INF] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' 2024-02-22T22:21:39.184 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:39 smithi049 bash[14150]: audit 2024-02-22T22:21:38.097650+0000 mon.smithi049 (mon.0) 104 : audit [INF] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' 2024-02-22T22:21:39.184 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:39 smithi049 bash[14150]: cluster 2024-02-22T22:21:38.260376+0000 mgr.smithi049.pzczis (mgr.14156) 14 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:21:39.184 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:39 smithi049 bash[14150]: audit 2024-02-22T22:21:38.334139+0000 mon.smithi049 (mon.0) 105 : audit [INF] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' 2024-02-22T22:21:39.184 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:39 smithi049 bash[14150]: audit 2024-02-22T22:21:38.337196+0000 mon.smithi049 (mon.0) 106 : audit [INF] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' 2024-02-22T22:21:39.184 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:39 smithi049 bash[14150]: audit 2024-02-22T22:21:38.339913+0000 mon.smithi049 (mon.0) 107 : audit [INF] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-02-22T22:21:39.184 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:39 smithi049 bash[14150]: audit 2024-02-22T22:21:38.340729+0000 mgr.smithi049.pzczis (mgr.14156) 15 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-02-22T22:21:39.184 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:39 smithi049 bash[14150]: audit 2024-02-22T22:21:38.344337+0000 mon.smithi049 (mon.0) 108 : audit [INF] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' 2024-02-22T22:21:39.185 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:39 smithi049 bash[14150]: cephadm 2024-02-22T22:21:38.358444+0000 mgr.smithi049.pzczis (mgr.14156) 16 : cephadm [INF] Deploying daemon grafana.smithi049 on smithi049 2024-02-22T22:21:41.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:41 smithi049 bash[14150]: cluster 2024-02-22T22:21:40.260704+0000 mgr.smithi049.pzczis (mgr.14156) 17 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:21:42.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:42 smithi049 bash[14150]: audit 2024-02-22T22:21:41.470272+0000 mon.smithi049 (mon.0) 109 : audit [INF] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' 2024-02-22T22:21:43.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:43 smithi049 bash[14150]: cluster 2024-02-22T22:21:42.261017+0000 mgr.smithi049.pzczis (mgr.14156) 18 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:21:45.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:45 smithi049 bash[14150]: cluster 2024-02-22T22:21:44.261362+0000 mgr.smithi049.pzczis (mgr.14156) 19 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:21:47.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:47 smithi049 bash[14150]: cluster 2024-02-22T22:21:46.261679+0000 mgr.smithi049.pzczis (mgr.14156) 20 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:21:49.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:49 smithi049 bash[14150]: cluster 2024-02-22T22:21:48.262064+0000 mgr.smithi049.pzczis (mgr.14156) 21 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:21:51.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:51 smithi049 bash[14150]: cluster 2024-02-22T22:21:50.262571+0000 mgr.smithi049.pzczis (mgr.14156) 22 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:21:53.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:53 smithi049 bash[14150]: cluster 2024-02-22T22:21:52.263059+0000 mgr.smithi049.pzczis (mgr.14156) 23 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:21:55.907 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:55 smithi049 bash[14150]: cluster 2024-02-22T22:21:54.263649+0000 mgr.smithi049.pzczis (mgr.14156) 24 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:21:57.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:57 smithi049 bash[14150]: cluster 2024-02-22T22:21:56.264136+0000 mgr.smithi049.pzczis (mgr.14156) 25 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:21:59.689 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:59 smithi049 bash[14150]: cluster 2024-02-22T22:21:58.264600+0000 mgr.smithi049.pzczis (mgr.14156) 26 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:21:59.689 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:59 smithi049 bash[14150]: audit 2024-02-22T22:21:58.733166+0000 mon.smithi049 (mon.0) 110 : audit [INF] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' 2024-02-22T22:21:59.690 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:59 smithi049 bash[14150]: audit 2024-02-22T22:21:59.458237+0000 mon.smithi049 (mon.0) 111 : audit [INF] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' 2024-02-22T22:21:59.690 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:21:59 smithi049 bash[14150]: audit 2024-02-22T22:21:59.462913+0000 mon.smithi049 (mon.0) 112 : audit [INF] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-02-22T22:22:00.492 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:00 smithi049 bash[14150]: cephadm 2024-02-22T22:21:58.739186+0000 mgr.smithi049.pzczis (mgr.14156) 27 : cephadm [INF] Deploying daemon node-exporter.smithi049 on smithi049 2024-02-22T22:22:00.492 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:00 smithi049 bash[14150]: audit 2024-02-22T22:22:00.460583+0000 mon.smithi049 (mon.0) 113 : audit [INF] from='mgr.14156 172.21.15.49:0/576486742' entity='mgr.smithi049.pzczis' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-02-22T22:22:00.492 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:00 smithi049 bash[14150]: cluster 2024-02-22T22:22:00.460689+0000 mon.smithi049 (mon.0) 114 : cluster [DBG] mgrmap e14: smithi049.pzczis(active, since 54s) 2024-02-22T22:22:07.536 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:07 smithi049 bash[14150]: cluster 2024-02-22T22:22:07.392512+0000 mon.smithi049 (mon.0) 115 : cluster [INF] Active manager daemon smithi049.pzczis restarted 2024-02-22T22:22:07.536 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:07 smithi049 bash[14150]: cluster 2024-02-22T22:22:07.393243+0000 mon.smithi049 (mon.0) 116 : cluster [INF] Activating manager daemon smithi049.pzczis 2024-02-22T22:22:07.536 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:07 smithi049 bash[14150]: cluster 2024-02-22T22:22:07.396953+0000 mon.smithi049 (mon.0) 117 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-02-22T22:22:07.537 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:07 smithi049 bash[14150]: cluster 2024-02-22T22:22:07.397068+0000 mon.smithi049 (mon.0) 118 : cluster [DBG] mgrmap e15: smithi049.pzczis(active, starting, since 0.00415242s) 2024-02-22T22:22:07.537 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:07 smithi049 bash[14150]: audit 2024-02-22T22:22:07.400283+0000 mon.smithi049 (mon.0) 119 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mon metadata", "id": "smithi049"}]: dispatch 2024-02-22T22:22:07.537 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:07 smithi049 bash[14150]: audit 2024-02-22T22:22:07.401010+0000 mon.smithi049 (mon.0) 120 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mgr metadata", "who": "smithi049.pzczis", "id": "smithi049.pzczis"}]: dispatch 2024-02-22T22:22:07.537 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:07 smithi049 bash[14150]: audit 2024-02-22T22:22:07.401991+0000 mon.smithi049 (mon.0) 121 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-02-22T22:22:07.537 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:07 smithi049 bash[14150]: audit 2024-02-22T22:22:07.402199+0000 mon.smithi049 (mon.0) 122 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-02-22T22:22:07.537 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:07 smithi049 bash[14150]: audit 2024-02-22T22:22:07.402367+0000 mon.smithi049 (mon.0) 123 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-02-22T22:22:07.537 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:07 smithi049 bash[14150]: cluster 2024-02-22T22:22:07.426704+0000 mon.smithi049 (mon.0) 124 : cluster [INF] Manager daemon smithi049.pzczis is now available 2024-02-22T22:22:08.599 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:08 smithi049 bash[14150]: audit 2024-02-22T22:22:07.575646+0000 mon.smithi049 (mon.0) 125 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:22:08.599 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:08 smithi049 bash[14150]: audit 2024-02-22T22:22:07.579121+0000 mon.smithi049 (mon.0) 126 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:22:08.599 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:08 smithi049 bash[14150]: audit 2024-02-22T22:22:07.617918+0000 mon.smithi049 (mon.0) 127 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:08.599 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:08 smithi049 bash[14150]: audit 2024-02-22T22:22:07.633384+0000 mon.smithi049 (mon.0) 128 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi049.pzczis/mirror_snapshot_schedule"}]: dispatch 2024-02-22T22:22:08.599 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:08 smithi049 bash[14150]: audit 2024-02-22T22:22:07.639251+0000 mon.smithi049 (mon.0) 129 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi049.pzczis/trash_purge_schedule"}]: dispatch 2024-02-22T22:22:08.599 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:08 smithi049 bash[14150]: cluster 2024-02-22T22:22:08.403078+0000 mon.smithi049 (mon.0) 130 : cluster [DBG] mgrmap e16: smithi049.pzczis(active, since 1.01015s) 2024-02-22T22:22:10.671 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:10 smithi049 bash[14150]: cluster 2024-02-22T22:22:09.453649+0000 mon.smithi049 (mon.0) 131 : cluster [DBG] mgrmap e17: smithi049.pzczis(active, since 2s) 2024-02-22T22:22:14.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:14 smithi049 bash[14150]: audit 2024-02-22T22:22:13.421188+0000 mon.smithi049 (mon.0) 132 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:14.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:14 smithi049 bash[14150]: audit 2024-02-22T22:22:13.697093+0000 mon.smithi049 (mon.0) 133 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd/host:smithi049", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:22:14.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:14 smithi049 bash[14150]: audit 2024-02-22T22:22:13.698916+0000 mon.smithi049 (mon.0) 134 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:22:14.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:14 smithi049 bash[14150]: audit 2024-02-22T22:22:13.700058+0000 mon.smithi049 (mon.0) 135 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:22:14.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:14 smithi049 bash[14150]: audit 2024-02-22T22:22:13.772774+0000 mon.smithi049 (mon.0) 136 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:14.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:14 smithi049 bash[14150]: audit 2024-02-22T22:22:13.776878+0000 mon.smithi049 (mon.0) 137 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:15.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:15 smithi049 bash[14150]: cephadm 2024-02-22T22:22:13.701653+0000 mgr.smithi049.pzczis (mgr.14180) 1 : cephadm [INF] Updating smithi049:/etc/ceph/ceph.conf 2024-02-22T22:22:15.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:15 smithi049 bash[14150]: cephadm 2024-02-22T22:22:13.721661+0000 mgr.smithi049.pzczis (mgr.14180) 2 : cephadm [INF] Updating smithi049:/etc/ceph/ceph.client.admin.keyring 2024-02-22T22:22:15.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:15 smithi049 bash[14150]: cephadm 2024-02-22T22:22:13.795107+0000 mgr.smithi049.pzczis (mgr.14180) 3 : cephadm [INF] Deploying daemon prometheus.smithi049 on smithi049 2024-02-22T22:22:16.444 INFO:teuthology.orchestra.run.smithi195.stdout:Added host 'smithi195' with addr '172.21.15.195' 2024-02-22T22:22:17.175 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch host ls --format=json 2024-02-22T22:22:17.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:17 smithi049 bash[14150]: audit 2024-02-22T22:22:15.569397+0000 mgr.smithi049.pzczis (mgr.14180) 4 : audit [DBG] from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi195", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:22:17.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:17 smithi049 bash[14150]: audit 2024-02-22T22:22:16.442777+0000 mon.smithi049 (mon.0) 138 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:17.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:17 smithi049 bash[14150]: cephadm 2024-02-22T22:22:16.443572+0000 mgr.smithi049.pzczis (mgr.14180) 5 : cephadm [INF] Added host smithi195 2024-02-22T22:22:19.928 INFO:teuthology.orchestra.run.smithi195.stdout: 2024-02-22T22:22:19.928 INFO:teuthology.orchestra.run.smithi195.stdout:[{"addr": "172.21.15.49", "hostname": "smithi049", "labels": [], "status": ""}, {"addr": "172.21.15.195", "hostname": "smithi195", "labels": [], "status": ""}] 2024-02-22T22:22:20.603 INFO:tasks.cephadm:Setting crush tunables to default 2024-02-22T22:22:20.603 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd crush tunables default 2024-02-22T22:22:20.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:20 smithi049 bash[14150]: audit 2024-02-22T22:22:19.927027+0000 mgr.smithi049.pzczis (mgr.14180) 6 : audit [DBG] from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:22:25.709 INFO:teuthology.orchestra.run.smithi049.stderr:adjusted tunables profile to default 2024-02-22T22:22:25.870 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:25 smithi049 bash[14150]: audit 2024-02-22T22:22:25.651338+0000 mon.smithi049 (mon.0) 139 : audit [INF] from='client.? 172.21.15.49:0/4203223038' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-02-22T22:22:26.859 INFO:tasks.cephadm:Adding mon.smithi049 on smithi049 2024-02-22T22:22:26.860 INFO:tasks.cephadm:Adding mon.smithi195 on smithi195 2024-02-22T22:22:26.860 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch apply mon '2;smithi049:172.21.15.49=smithi049;smithi195:172.21.15.195=smithi195' 2024-02-22T22:22:26.997 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:26 smithi049 bash[14150]: audit 2024-02-22T22:22:25.705882+0000 mon.smithi049 (mon.0) 140 : audit [INF] from='client.? 172.21.15.49:0/4203223038' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-02-22T22:22:26.997 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:26 smithi049 bash[14150]: cluster 2024-02-22T22:22:25.706003+0000 mon.smithi049 (mon.0) 141 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-02-22T22:22:28.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:27 smithi049 bash[14150]: audit 2024-02-22T22:22:26.973135+0000 mon.smithi049 (mon.0) 142 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:28.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:27 smithi049 bash[14150]: audit 2024-02-22T22:22:26.976098+0000 mon.smithi049 (mon.0) 143 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:22:28.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:27 smithi049 bash[14150]: cluster 2024-02-22T22:22:27.403933+0000 mgr.smithi049.pzczis (mgr.14180) 7 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:22:28.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:27 smithi049 bash[14150]: audit 2024-02-22T22:22:27.481830+0000 mon.smithi049 (mon.0) 144 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:28.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:27 smithi049 bash[14150]: audit 2024-02-22T22:22:27.625489+0000 mon.smithi049 (mon.0) 145 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:29.859 INFO:teuthology.orchestra.run.smithi195.stdout:Scheduled mon update... 2024-02-22T22:22:30.466 DEBUG:teuthology.orchestra.run.smithi195:mon.smithi195> sudo journalctl -f -n 0 -u ceph-605df99c-d1d0-11ee-95c0-87774f69a715@mon.smithi195.service 2024-02-22T22:22:30.469 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-02-22T22:22:30.469 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph mon dump -f json 2024-02-22T22:22:30.663 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:-- Logs begin at Sun 2022-08-14 12:20:24 UTC. -- 2024-02-22T22:22:30.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:30 smithi049 bash[14150]: audit 2024-02-22T22:22:29.252708+0000 mon.smithi049 (mon.0) 146 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:30.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:30 smithi049 bash[14150]: cluster 2024-02-22T22:22:29.404389+0000 mgr.smithi049.pzczis (mgr.14180) 8 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:22:30.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:30 smithi049 bash[14150]: audit 2024-02-22T22:22:29.858279+0000 mon.smithi049 (mon.0) 147 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:31.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:31 smithi049 bash[14150]: audit 2024-02-22T22:22:29.846399+0000 mgr.smithi049.pzczis (mgr.14180) 9 : audit [DBG] from='client.14192 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi049:172.21.15.49=smithi049;smithi195:172.21.15.195=smithi195", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:22:31.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:31 smithi049 bash[14150]: cephadm 2024-02-22T22:22:29.852969+0000 mgr.smithi049.pzczis (mgr.14180) 10 : cephadm [INF] Saving service mon spec with placement smithi049:172.21.15.49=smithi049;smithi195:172.21.15.195=smithi195;count:2 2024-02-22T22:22:32.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:32 smithi049 bash[14150]: cluster 2024-02-22T22:22:31.404809+0000 mgr.smithi049.pzczis (mgr.14180) 11 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:22:34.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:33 smithi049 bash[14150]: audit 2024-02-22T22:22:32.777972+0000 mon.smithi049 (mon.0) 148 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:34.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:33 smithi049 bash[14150]: cluster 2024-02-22T22:22:33.405196+0000 mgr.smithi049.pzczis (mgr.14180) 12 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:22:34.425 INFO:teuthology.orchestra.run.smithi195.stdout: 2024-02-22T22:22:34.425 INFO:teuthology.orchestra.run.smithi195.stdout:{"epoch":1,"fsid":"605df99c-d1d0-11ee-95c0-87774f69a715","modified":"2024-02-22T22:19:50.905807Z","created":"2024-02-22T22:19:50.905807Z","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":"smithi049","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:3300","nonce":0},{"type":"v1","addr":"172.21.15.49:6789","nonce":0}]},"addr":"172.21.15.49:6789/0","public_addr":"172.21.15.49:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-02-22T22:22:34.428 INFO:teuthology.orchestra.run.smithi195.stderr:dumped monmap epoch 1 2024-02-22T22:22:35.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:34 smithi049 bash[14150]: audit 2024-02-22T22:22:34.423752+0000 mon.smithi049 (mon.0) 149 : audit [DBG] from='client.? 172.21.15.195:0/2750151255' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-22T22:22:36.056 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-02-22T22:22:36.056 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph mon dump -f json 2024-02-22T22:22:36.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:35 smithi049 bash[14150]: cluster 2024-02-22T22:22:35.405668+0000 mgr.smithi049.pzczis (mgr.14180) 13 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:22:37.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:37 smithi049 bash[14150]: audit 2024-02-22T22:22:36.329914+0000 mon.smithi049 (mon.0) 150 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:37.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:37 smithi049 bash[14150]: audit 2024-02-22T22:22:36.695406+0000 mon.smithi049 (mon.0) 151 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:37.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:37 smithi049 bash[14150]: audit 2024-02-22T22:22:36.696942+0000 mon.smithi049 (mon.0) 152 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd/host:smithi195", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:22:37.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:37 smithi049 bash[14150]: audit 2024-02-22T22:22:36.698772+0000 mon.smithi049 (mon.0) 153 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:22:37.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:37 smithi049 bash[14150]: audit 2024-02-22T22:22:36.700167+0000 mon.smithi049 (mon.0) 154 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:22:37.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:37 smithi049 bash[14150]: audit 2024-02-22T22:22:36.813753+0000 mon.smithi049 (mon.0) 155 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:37.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:37 smithi049 bash[14150]: audit 2024-02-22T22:22:36.818385+0000 mon.smithi049 (mon.0) 156 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:37.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:37 smithi049 bash[14150]: audit 2024-02-22T22:22:36.821200+0000 mon.smithi049 (mon.0) 157 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi195", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-22T22:22:37.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:37 smithi049 bash[14150]: audit 2024-02-22T22:22:36.823815+0000 mon.smithi049 (mon.0) 158 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi195", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-02-22T22:22:37.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:37 smithi049 bash[14150]: audit 2024-02-22T22:22:36.825004+0000 mon.smithi049 (mon.0) 159 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:22:38.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:38 smithi049 bash[14150]: cephadm 2024-02-22T22:22:36.702023+0000 mgr.smithi049.pzczis (mgr.14180) 14 : cephadm [INF] Updating smithi195:/etc/ceph/ceph.conf 2024-02-22T22:22:38.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:38 smithi049 bash[14150]: cephadm 2024-02-22T22:22:36.731202+0000 mgr.smithi049.pzczis (mgr.14180) 15 : cephadm [INF] Updating smithi195:/etc/ceph/ceph.client.admin.keyring 2024-02-22T22:22:38.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:38 smithi049 bash[14150]: cephadm 2024-02-22T22:22:36.826223+0000 mgr.smithi049.pzczis (mgr.14180) 16 : cephadm [INF] Deploying daemon crash.smithi195 on smithi195 2024-02-22T22:22:38.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:38 smithi049 bash[14150]: cluster 2024-02-22T22:22:37.406083+0000 mgr.smithi049.pzczis (mgr.14180) 17 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:22:40.094 INFO:teuthology.orchestra.run.smithi195.stdout: 2024-02-22T22:22:40.094 INFO:teuthology.orchestra.run.smithi195.stdout:{"epoch":1,"fsid":"605df99c-d1d0-11ee-95c0-87774f69a715","modified":"2024-02-22T22:19:50.905807Z","created":"2024-02-22T22:19:50.905807Z","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":"smithi049","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:3300","nonce":0},{"type":"v1","addr":"172.21.15.49:6789","nonce":0}]},"addr":"172.21.15.49:6789/0","public_addr":"172.21.15.49:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-02-22T22:22:40.096 INFO:teuthology.orchestra.run.smithi195.stderr:dumped monmap epoch 1 2024-02-22T22:22:40.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:40 smithi049 bash[14150]: cluster 2024-02-22T22:22:39.406578+0000 mgr.smithi049.pzczis (mgr.14180) 18 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:22:40.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:40 smithi049 bash[14150]: audit 2024-02-22T22:22:40.092944+0000 mon.smithi049 (mon.0) 160 : audit [DBG] from='client.? 172.21.15.195:0/56598216' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-22T22:22:41.810 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-02-22T22:22:41.811 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph mon dump -f json 2024-02-22T22:22:41.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:41 smithi049 bash[14150]: audit 2024-02-22T22:22:40.677627+0000 mon.smithi049 (mon.0) 161 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:41.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:41 smithi049 bash[14150]: audit 2024-02-22T22:22:40.681724+0000 mon.smithi049 (mon.0) 162 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi195.prtvdp", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-22T22:22:41.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:41 smithi049 bash[14150]: audit 2024-02-22T22:22:40.684507+0000 mon.smithi049 (mon.0) 163 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi195.prtvdp", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-02-22T22:22:41.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:41 smithi049 bash[14150]: audit 2024-02-22T22:22:40.685779+0000 mon.smithi049 (mon.0) 164 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-22T22:22:41.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:41 smithi049 bash[14150]: audit 2024-02-22T22:22:40.687307+0000 mon.smithi049 (mon.0) 165 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:22:41.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:41 smithi049 bash[14150]: cephadm 2024-02-22T22:22:40.688367+0000 mgr.smithi049.pzczis (mgr.14180) 19 : cephadm [INF] Deploying daemon mgr.smithi195.prtvdp on smithi195 2024-02-22T22:22:41.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:41 smithi049 bash[14150]: cluster 2024-02-22T22:22:41.407057+0000 mgr.smithi049.pzczis (mgr.14180) 20 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:22:43.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:43 smithi049 bash[14150]: audit 2024-02-22T22:22:42.638765+0000 mon.smithi049 (mon.0) 166 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:43.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:43 smithi049 bash[14150]: cluster 2024-02-22T22:22:43.407532+0000 mgr.smithi049.pzczis (mgr.14180) 21 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:22:45.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:44 smithi049 bash[14150]: audit 2024-02-22T22:22:43.793025+0000 mon.smithi049 (mon.0) 167 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:45.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:44 smithi049 bash[14150]: audit 2024-02-22T22:22:43.796764+0000 mon.smithi049 (mon.0) 168 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-22T22:22:45.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:44 smithi049 bash[14150]: audit 2024-02-22T22:22:43.798074+0000 mon.smithi049 (mon.0) 169 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:22:45.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:44 smithi049 bash[14150]: cephadm 2024-02-22T22:22:43.799204+0000 mgr.smithi049.pzczis (mgr.14180) 22 : cephadm [INF] Deploying daemon mon.smithi195 on smithi195 2024-02-22T22:22:46.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:45 smithi049 bash[14150]: cluster 2024-02-22T22:22:45.408009+0000 mgr.smithi049.pzczis (mgr.14180) 23 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:22:46.265 INFO:teuthology.orchestra.run.smithi195.stdout: 2024-02-22T22:22:46.265 INFO:teuthology.orchestra.run.smithi195.stdout:{"epoch":1,"fsid":"605df99c-d1d0-11ee-95c0-87774f69a715","modified":"2024-02-22T22:19:50.905807Z","created":"2024-02-22T22:19:50.905807Z","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":"smithi049","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:3300","nonce":0},{"type":"v1","addr":"172.21.15.49:6789","nonce":0}]},"addr":"172.21.15.49:6789/0","public_addr":"172.21.15.49:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-02-22T22:22:46.269 INFO:teuthology.orchestra.run.smithi195.stderr:dumped monmap epoch 1 2024-02-22T22:22:46.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:46 smithi049 bash[14150]: audit 2024-02-22T22:22:46.263629+0000 mon.smithi049 (mon.0) 170 : audit [DBG] from='client.? 172.21.15.195:0/2377348994' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-22T22:22:48.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:47 smithi049 bash[14150]: cluster 2024-02-22T22:22:47.408456+0000 mgr.smithi049.pzczis (mgr.14180) 24 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:22:48.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:47 smithi049 bash[14150]: audit 2024-02-22T22:22:47.645652+0000 mon.smithi049 (mon.0) 171 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:48.305 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-02-22T22:22:48.305 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph mon dump -f json 2024-02-22T22:22:48.900 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:48 smithi195 systemd[1]: Started Ceph mon.smithi195 for 605df99c-d1d0-11ee-95c0-87774f69a715. 2024-02-22T22:22:50.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:49 smithi049 bash[14150]: audit 2024-02-22T22:22:48.879702+0000 mon.smithi049 (mon.0) 172 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:50.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:49 smithi049 bash[14150]: cephadm 2024-02-22T22:22:48.882641+0000 mgr.smithi049.pzczis (mgr.14180) 25 : cephadm [INF] Deploying daemon node-exporter.smithi195 on smithi195 2024-02-22T22:22:50.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:49 smithi049 bash[14150]: cluster 2024-02-22T22:22:49.408874+0000 mgr.smithi049.pzczis (mgr.14180) 26 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:22:50.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:49 smithi049 bash[14150]: audit 2024-02-22T22:22:49.543795+0000 mon.smithi049 (mon.0) 173 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:50.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:49 smithi049 bash[14150]: audit 2024-02-22T22:22:49.546658+0000 mon.smithi049 (mon.0) 174 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:22:51.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.762+0000 7fc8777f2880 0 set uid:gid to 167:167 (ceph:ceph) 2024-02-22T22:22:51.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.762+0000 7fc8777f2880 0 ceph version 16.2.14-550-geb66ed92 (eb66ed921e744301e6863be6353618d63967ea59) pacific (stable), process ceph-mon, pid 7 2024-02-22T22:22:51.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.762+0000 7fc8777f2880 0 pidfile_write: ignore empty --pid-file 2024-02-22T22:22:51.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.766+0000 7fc8777f2880 0 load: jerasure load: lrc load: isa 2024-02-22T22:22:51.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: RocksDB version: 6.8.1 2024-02-22T22:22:51.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-02-22T22:22:51.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Compile date Feb 20 2024 2024-02-22T22:22:51.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: DB SUMMARY 2024-02-22T22:22:51.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: CURRENT file: CURRENT 2024-02-22T22:22:51.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: IDENTITY file: IDENTITY 2024-02-22T22:22:51.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: MANIFEST file: MANIFEST-000001 size: 13 Bytes 2024-02-22T22:22:51.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi195/store.db dir, Total Num: 0, files: 2024-02-22T22:22:51.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi195/store.db: 000003.log size: 511 ; 2024-02-22T22:22:51.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.error_if_exists: 0 2024-02-22T22:22:51.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.create_if_missing: 0 2024-02-22T22:22:51.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.paranoid_checks: 1 2024-02-22T22:22:51.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.env: 0x557805226080 2024-02-22T22:22:51.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.fs: Posix File System 2024-02-22T22:22:51.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.info_log: 0x557806f10560 2024-02-22T22:22:51.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.max_file_opening_threads: 16 2024-02-22T22:22:51.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.statistics: (nil) 2024-02-22T22:22:51.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.use_fsync: 0 2024-02-22T22:22:51.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.max_log_file_size: 0 2024-02-22T22:22:51.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-02-22T22:22:51.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-02-22T22:22:51.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.keep_log_file_num: 1000 2024-02-22T22:22:51.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.recycle_log_file_num: 0 2024-02-22T22:22:51.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.allow_fallocate: 1 2024-02-22T22:22:51.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.allow_mmap_reads: 0 2024-02-22T22:22:51.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.allow_mmap_writes: 0 2024-02-22T22:22:51.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.use_direct_reads: 0 2024-02-22T22:22:51.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-02-22T22:22:51.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.create_missing_column_families: 0 2024-02-22T22:22:51.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.db_log_dir: 2024-02-22T22:22:51.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi195/store.db 2024-02-22T22:22:51.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-02-22T22:22:51.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.max_subcompactions: 1 2024-02-22T22:22:51.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.max_background_flushes: -1 2024-02-22T22:22:51.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-02-22T22:22:51.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-02-22T22:22:51.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-02-22T22:22:51.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-02-22T22:22:51.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-02-22T22:22:51.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.advise_random_on_open: 1 2024-02-22T22:22:51.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.db_write_buffer_size: 0 2024-02-22T22:22:51.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.write_buffer_manager: 0x557807b82450 2024-02-22T22:22:51.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-02-22T22:22:51.059 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-02-22T22:22:51.059 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-02-22T22:22:51.059 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-02-22T22:22:51.059 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.rate_limiter: (nil) 2024-02-22T22:22:51.059 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-02-22T22:22:51.059 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.wal_recovery_mode: 2 2024-02-22T22:22:51.060 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.enable_thread_tracking: 0 2024-02-22T22:22:51.060 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.enable_pipelined_write: 0 2024-02-22T22:22:51.060 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.unordered_write: 0 2024-02-22T22:22:51.060 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-02-22T22:22:51.060 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-02-22T22:22:51.061 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-02-22T22:22:51.061 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-02-22T22:22:51.061 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.row_cache: None 2024-02-22T22:22:51.061 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.wal_filter: None 2024-02-22T22:22:51.061 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-02-22T22:22:51.061 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.allow_ingest_behind: 0 2024-02-22T22:22:51.061 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.preserve_deletes: 0 2024-02-22T22:22:51.062 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.two_write_queues: 0 2024-02-22T22:22:51.062 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.manual_wal_flush: 0 2024-02-22T22:22:51.062 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.atomic_flush: 0 2024-02-22T22:22:51.062 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-02-22T22:22:51.062 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-02-22T22:22:51.062 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-02-22T22:22:51.063 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.log_readahead_size: 0 2024-02-22T22:22:51.063 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-02-22T22:22:51.063 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.max_background_jobs: 2 2024-02-22T22:22:51.063 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.max_background_compactions: -1 2024-02-22T22:22:51.063 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-02-22T22:22:51.063 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-02-22T22:22:51.064 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-02-22T22:22:51.064 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.max_total_wal_size: 0 2024-02-22T22:22:51.064 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-02-22T22:22:51.064 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-02-22T22:22:51.064 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-02-22T22:22:51.064 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-02-22T22:22:51.065 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.max_open_files: -1 2024-02-22T22:22:51.065 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.bytes_per_sync: 0 2024-02-22T22:22:51.065 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-02-22T22:22:51.065 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-02-22T22:22:51.065 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.compaction_readahead_size: 0 2024-02-22T22:22:51.065 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Compression algorithms supported: 2024-02-22T22:22:51.066 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-02-22T22:22:51.066 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: kZSTD supported: 0 2024-02-22T22:22:51.066 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: kXpressCompression supported: 0 2024-02-22T22:22:51.066 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: kLZ4HCCompression supported: 1 2024-02-22T22:22:51.066 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: kLZ4Compression supported: 1 2024-02-22T22:22:51.066 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: kBZip2Compression supported: 0 2024-02-22T22:22:51.067 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: kZlibCompression supported: 1 2024-02-22T22:22:51.067 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: kSnappyCompression supported: 1 2024-02-22T22:22:51.067 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-02-22T22:22:51.067 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi195/store.db/MANIFEST-000001 2024-02-22T22:22:51.067 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-02-22T22:22:51.067 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-02-22T22:22:51.068 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.merge_operator: 2024-02-22T22:22:51.068 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.compaction_filter: None 2024-02-22T22:22:51.071 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.compaction_filter_factory: None 2024-02-22T22:22:51.072 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-02-22T22:22:51.072 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-02-22T22:22:51.072 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x557806eb3d10) 2024-02-22T22:22:51.072 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: cache_index_and_filter_blocks: 1 2024-02-22T22:22:51.072 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: cache_index_and_filter_blocks_with_high_priority: 0 2024-02-22T22:22:51.072 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-02-22T22:22:51.073 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: pin_top_level_index_and_filter: 1 2024-02-22T22:22:51.073 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: index_type: 0 2024-02-22T22:22:51.073 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: data_block_index_type: 0 2024-02-22T22:22:51.073 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: index_shortening: 1 2024-02-22T22:22:51.073 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: data_block_hash_table_util_ratio: 0.750000 2024-02-22T22:22:51.073 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: hash_index_allow_collision: 1 2024-02-22T22:22:51.074 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: checksum: 1 2024-02-22T22:22:51.074 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: no_block_cache: 0 2024-02-22T22:22:51.074 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: block_cache: 0x557806eeaf10 2024-02-22T22:22:51.074 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: block_cache_name: BinnedLRUCache 2024-02-22T22:22:51.074 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: block_cache_options: 2024-02-22T22:22:51.074 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: capacity : 536870912 2024-02-22T22:22:51.075 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: num_shard_bits : 4 2024-02-22T22:22:51.075 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: strict_capacity_limit : 0 2024-02-22T22:22:51.075 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: high_pri_pool_ratio: 0.000 2024-02-22T22:22:51.075 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: block_cache_compressed: (nil) 2024-02-22T22:22:51.075 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: persistent_cache: (nil) 2024-02-22T22:22:51.075 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: block_size: 4096 2024-02-22T22:22:51.075 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: block_size_deviation: 10 2024-02-22T22:22:51.076 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: block_restart_interval: 16 2024-02-22T22:22:51.076 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: index_block_restart_interval: 1 2024-02-22T22:22:51.076 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: metadata_block_size: 4096 2024-02-22T22:22:51.076 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: partition_filters: 0 2024-02-22T22:22:51.076 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: use_delta_encoding: 1 2024-02-22T22:22:51.076 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: filter_policy: rocksdb.BuiltinBloomFilter 2024-02-22T22:22:51.077 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: whole_key_filtering: 1 2024-02-22T22:22:51.077 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: verify_compression: 0 2024-02-22T22:22:51.077 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: read_amp_bytes_per_bit: 0 2024-02-22T22:22:51.077 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: format_version: 2 2024-02-22T22:22:51.077 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: enable_index_compression: 1 2024-02-22T22:22:51.077 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: block_align: 0 2024-02-22T22:22:51.078 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.write_buffer_size: 33554432 2024-02-22T22:22:51.078 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.max_write_buffer_number: 2 2024-02-22T22:22:51.078 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.compression: NoCompression 2024-02-22T22:22:51.078 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.bottommost_compression: Disabled 2024-02-22T22:22:51.078 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.prefix_extractor: nullptr 2024-02-22T22:22:51.078 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-02-22T22:22:51.079 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.num_levels: 7 2024-02-22T22:22:51.079 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-02-22T22:22:51.079 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-02-22T22:22:51.079 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-02-22T22:22:51.079 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-02-22T22:22:51.079 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-02-22T22:22:51.080 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-02-22T22:22:51.080 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-02-22T22:22:51.080 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-02-22T22:22:51.080 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-02-22T22:22:51.080 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-02-22T22:22:51.080 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.compression_opts.level: 32767 2024-02-22T22:22:51.081 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.compression_opts.strategy: 0 2024-02-22T22:22:51.081 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-02-22T22:22:51.081 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-02-22T22:22:51.081 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.compression_opts.enabled: false 2024-02-22T22:22:51.081 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-02-22T22:22:51.081 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-02-22T22:22:51.082 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-02-22T22:22:51.082 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.target_file_size_base: 67108864 2024-02-22T22:22:51.082 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-02-22T22:22:51.082 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-02-22T22:22:51.082 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-02-22T22:22:51.082 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-02-22T22:22:51.082 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-02-22T22:22:51.083 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-02-22T22:22:51.083 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-02-22T22:22:51.083 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-02-22T22:22:51.083 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-02-22T22:22:51.083 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-02-22T22:22:51.083 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-02-22T22:22:51.084 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-02-22T22:22:51.084 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-02-22T22:22:51.084 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.arena_block_size: 4194304 2024-02-22T22:22:51.084 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-02-22T22:22:51.084 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-02-22T22:22:51.084 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-02-22T22:22:51.085 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.disable_auto_compactions: 0 2024-02-22T22:22:51.085 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-02-22T22:22:51.085 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-02-22T22:22:51.085 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-02-22T22:22:51.085 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-02-22T22:22:51.085 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-02-22T22:22:51.086 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-02-22T22:22:51.086 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-02-22T22:22:51.086 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-02-22T22:22:51.086 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-02-22T22:22:51.086 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-02-22T22:22:51.086 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.table_properties_collectors: 2024-02-22T22:22:51.087 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.inplace_update_support: 0 2024-02-22T22:22:51.087 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-02-22T22:22:51.087 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-02-22T22:22:51.087 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-02-22T22:22:51.087 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-02-22T22:22:51.087 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.bloom_locality: 0 2024-02-22T22:22:51.088 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.max_successive_merges: 0 2024-02-22T22:22:51.088 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-02-22T22:22:51.088 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.paranoid_file_checks: 0 2024-02-22T22:22:51.088 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.force_consistency_checks: 0 2024-02-22T22:22:51.088 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.report_bg_io_stats: 0 2024-02-22T22:22:51.088 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.ttl: 2592000 2024-02-22T22:22:51.089 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-02-22T22:22:51.089 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi195/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-22T22:22:51.089 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 0 2024-02-22T22:22:51.089 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1708640570775535, "job": 1, "event": "recovery_started", "log_files": [3]} 2024-02-22T22:22:51.089 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: [db_impl/db_impl_open.cc:760] Recovering log #3 mode 2 2024-02-22T22:22:51.089 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 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-22T22:22:51.090 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1708640570776164, "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": 1708640570, "oldest_key_time": 3, "file_creation_time": 0}} 2024-02-22T22:22:51.090 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: [version_set.cc:3826] Creating manifest 5 2024-02-22T22:22:51.090 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.770+0000 7fc8777f2880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1708640570776682, "job": 1, "event": "recovery_finished"} 2024-02-22T22:22:51.090 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.774+0000 7fc8777f2880 4 rocksdb: DB pointer 0x557806fb3800 2024-02-22T22:22:51.090 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.774+0000 7fc85e5e4700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-02-22T22:22:51.090 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.774+0000 7fc85e5e4700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-02-22T22:22:51.090 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: ** DB Stats ** 2024-02-22T22:22:51.091 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-22T22:22:51.091 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: 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-22T22:22:51.091 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-02-22T22:22:51.091 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-22T22:22:51.091 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: 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-22T22:22:51.091 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-02-22T22:22:51.092 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-22T22:22:51.092 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: ** Compaction Stats [default] ** 2024-02-22T22:22:51.092 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: 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-22T22:22:51.092 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-22T22:22:51.092 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: L0 1/0 1.40 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.4 0.00 0.00 1 0.001 0 0 2024-02-22T22:22:51.092 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: Sum 1/0 1.40 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.4 0.00 0.00 1 0.001 0 0 2024-02-22T22:22:51.092 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.4 0.00 0.00 1 0.001 0 0 2024-02-22T22:22:51.092 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: ** Compaction Stats [default] ** 2024-02-22T22:22:51.093 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: 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-22T22:22:51.093 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-22T22:22:51.093 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4 0.00 0.00 1 0.001 0 0 2024-02-22T22:22:51.093 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-22T22:22:51.093 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: Flush(GB): cumulative 0.000, interval 0.000 2024-02-22T22:22:51.093 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-22T22:22:51.093 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: AddFile(Total Files): cumulative 0, interval 0 2024-02-22T22:22:51.094 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: AddFile(L0 Files): cumulative 0, interval 0 2024-02-22T22:22:51.094 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: AddFile(Keys): cumulative 0, interval 0 2024-02-22T22:22:51.094 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: Cumulative compaction: 0.00 GB write, 0.40 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-22T22:22:51.094 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: Interval compaction: 0.00 GB write, 0.40 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-22T22:22:51.094 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: 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-22T22:22:51.094 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: ** File Read Latency Histogram By Level [default] ** 2024-02-22T22:22:51.094 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: ** Compaction Stats [default] ** 2024-02-22T22:22:51.095 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: 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-22T22:22:51.095 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-22T22:22:51.095 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: L0 1/0 1.40 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.4 0.00 0.00 1 0.001 0 0 2024-02-22T22:22:51.095 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: Sum 1/0 1.40 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.4 0.00 0.00 1 0.001 0 0 2024-02-22T22:22:51.095 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: 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-22T22:22:51.095 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: ** Compaction Stats [default] ** 2024-02-22T22:22:51.095 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: 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-22T22:22:51.095 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-22T22:22:51.096 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4 0.00 0.00 1 0.001 0 0 2024-02-22T22:22:51.096 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-22T22:22:51.096 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: Flush(GB): cumulative 0.000, interval 0.000 2024-02-22T22:22:51.096 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-22T22:22:51.096 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: AddFile(Total Files): cumulative 0, interval 0 2024-02-22T22:22:51.096 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: AddFile(L0 Files): cumulative 0, interval 0 2024-02-22T22:22:51.096 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: AddFile(Keys): cumulative 0, interval 0 2024-02-22T22:22:51.097 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: Cumulative compaction: 0.00 GB write, 0.40 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-22T22:22:51.097 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: 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-22T22:22:51.097 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: 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-22T22:22:51.097 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: ** File Read Latency Histogram By Level [default] ** 2024-02-22T22:22:51.097 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.774+0000 7fc8777f2880 0 mon.smithi195 does not exist in monmap, will attempt to join an existing cluster 2024-02-22T22:22:51.097 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.774+0000 7fc8777f2880 0 using public_addr v2:172.21.15.195:0/0 -> [v2:172.21.15.195:3300/0,v1:172.21.15.195:6789/0] 2024-02-22T22:22:51.097 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.774+0000 7fc8777f2880 0 starting mon.smithi195 rank -1 at public addrs [v2:172.21.15.195:3300/0,v1:172.21.15.195:6789/0] at bind addrs [v2:172.21.15.195:3300/0,v1:172.21.15.195:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi195 fsid 605df99c-d1d0-11ee-95c0-87774f69a715 2024-02-22T22:22:51.097 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.774+0000 7fc8777f2880 1 mon.smithi195@-1(???) e0 preinit fsid 605df99c-d1d0-11ee-95c0-87774f69a715 2024-02-22T22:22:51.097 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.814+0000 7fc860de9700 0 mon.smithi195@-1(synchronizing).mds e1 new map 2024-02-22T22:22:51.097 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.814+0000 7fc860de9700 0 mon.smithi195@-1(synchronizing).mds e1 print_map 2024-02-22T22:22:51.097 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: e1 2024-02-22T22:22:51.097 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: enable_multiple, ever_enabled_multiple: 1,1 2024-02-22T22:22:51.098 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: 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-22T22:22:51.098 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: legacy client fscid: -1 2024-02-22T22:22:51.098 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: 2024-02-22T22:22:51.098 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: No filesystems configured 2024-02-22T22:22:51.098 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.814+0000 7fc860de9700 1 mon.smithi195@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-02-22T22:22:51.098 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.818+0000 7fc860de9700 1 mon.smithi195@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-02-22T22:22:51.098 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.818+0000 7fc860de9700 1 mon.smithi195@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-02-22T22:22:51.098 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.818+0000 7fc860de9700 1 mon.smithi195@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-02-22T22:22:51.098 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.818+0000 7fc860de9700 1 mon.smithi195@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-02-22T22:22:51.098 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.818+0000 7fc860de9700 1 mon.smithi195@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-02-22T22:22:51.098 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.818+0000 7fc860de9700 1 mon.smithi195@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2024-02-22T22:22:51.098 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.818+0000 7fc860de9700 0 mon.smithi195@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2024-02-22T22:22:51.098 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.818+0000 7fc860de9700 0 mon.smithi195@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-02-22T22:22:51.098 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.818+0000 7fc860de9700 0 mon.smithi195@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-02-22T22:22:51.099 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.818+0000 7fc860de9700 0 mon.smithi195@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-02-22T22:22:51.099 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: audit 2024-02-22T22:22:48.879702+0000 mon.smithi049 (mon.0) 172 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:51.099 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: cephadm 2024-02-22T22:22:48.882641+0000 mgr.smithi049.pzczis (mgr.14180) 25 : cephadm [INF] Deploying daemon node-exporter.smithi195 on smithi195 2024-02-22T22:22:51.099 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: cluster 2024-02-22T22:22:49.408874+0000 mgr.smithi049.pzczis (mgr.14180) 26 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:22:51.099 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: audit 2024-02-22T22:22:49.543795+0000 mon.smithi049 (mon.0) 173 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:51.099 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: audit 2024-02-22T22:22:49.546658+0000 mon.smithi049 (mon.0) 174 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:22:51.099 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:50 smithi195 bash[18068]: debug 2024-02-22T22:22:50.818+0000 7fc860de9700 1 mon.smithi195@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-02-22T22:22:56.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:55 smithi195 bash[18068]: audit 2024-02-22T22:22:50.828819+0000 mon.smithi049 (mon.0) 175 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-02-22T22:22:56.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:55 smithi195 bash[18068]: audit 2024-02-22T22:22:50.833493+0000 mon.smithi049 (mon.0) 176 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mon metadata", "id": "smithi049"}]: dispatch 2024-02-22T22:22:56.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:55 smithi195 bash[18068]: cluster 2024-02-22T22:22:50.833830+0000 mon.smithi049 (mon.0) 177 : cluster [INF] mon.smithi049 calling monitor election 2024-02-22T22:22:56.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:55 smithi195 bash[18068]: audit 2024-02-22T22:22:50.852147+0000 mon.smithi049 (mon.0) 178 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-02-22T22:22:56.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:55 smithi195 bash[18068]: cluster 2024-02-22T22:22:51.409305+0000 mgr.smithi049.pzczis (mgr.14180) 27 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:22:56.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:55 smithi195 bash[18068]: audit 2024-02-22T22:22:51.828372+0000 mon.smithi049 (mon.0) 179 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-02-22T22:22:56.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:55 smithi195 bash[18068]: audit 2024-02-22T22:22:52.787871+0000 mon.smithi049 (mon.0) 180 : audit [DBG] from='mgr.? 172.21.15.195:0/1625530230' entity='mgr.smithi195.prtvdp' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi195.prtvdp/crt"}]: dispatch 2024-02-22T22:22:56.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:55 smithi195 bash[18068]: audit 2024-02-22T22:22:52.828474+0000 mon.smithi049 (mon.0) 181 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-02-22T22:22:56.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:55 smithi195 bash[18068]: cluster 2024-02-22T22:22:52.829492+0000 mon.smithi195 (mon.1) 1 : cluster [INF] mon.smithi195 calling monitor election 2024-02-22T22:22:56.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:55 smithi195 bash[18068]: cluster 2024-02-22T22:22:53.409715+0000 mgr.smithi049.pzczis (mgr.14180) 28 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:22:56.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:55 smithi195 bash[18068]: audit 2024-02-22T22:22:53.828525+0000 mon.smithi049 (mon.0) 182 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-02-22T22:22:56.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:55 smithi195 bash[18068]: audit 2024-02-22T22:22:54.828994+0000 mon.smithi049 (mon.0) 183 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-02-22T22:22:56.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:55 smithi195 bash[18068]: cluster 2024-02-22T22:22:55.410105+0000 mgr.smithi049.pzczis (mgr.14180) 29 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:22:56.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:55 smithi195 bash[18068]: audit 2024-02-22T22:22:55.828802+0000 mon.smithi049 (mon.0) 184 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-02-22T22:22:56.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:55 smithi195 bash[18068]: cluster 2024-02-22T22:22:55.872109+0000 mon.smithi049 (mon.0) 185 : cluster [INF] mon.smithi049 is new leader, mons smithi049,smithi195 in quorum (ranks 0,1) 2024-02-22T22:22:56.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:55 smithi195 bash[18068]: cluster 2024-02-22T22:22:55.877449+0000 mon.smithi049 (mon.0) 186 : cluster [DBG] monmap e2: 2 mons at {smithi049=[v2:172.21.15.49:3300/0,v1:172.21.15.49:6789/0],smithi195=[v2:172.21.15.195:3300/0,v1:172.21.15.195:6789/0]} removed_ranks: {} 2024-02-22T22:22:56.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:55 smithi195 bash[18068]: cluster 2024-02-22T22:22:55.895623+0000 mon.smithi049 (mon.0) 187 : cluster [DBG] fsmap 2024-02-22T22:22:56.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:55 smithi195 bash[18068]: cluster 2024-02-22T22:22:55.895682+0000 mon.smithi049 (mon.0) 188 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-02-22T22:22:56.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:55 smithi195 bash[18068]: cluster 2024-02-22T22:22:55.896067+0000 mon.smithi049 (mon.0) 189 : cluster [DBG] mgrmap e17: smithi049.pzczis(active, since 48s) 2024-02-22T22:22:56.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:55 smithi195 bash[18068]: cluster 2024-02-22T22:22:55.896329+0000 mon.smithi049 (mon.0) 190 : cluster [INF] overall HEALTH_OK 2024-02-22T22:22:56.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:55 smithi195 bash[18068]: cluster 2024-02-22T22:22:55.898282+0000 mon.smithi049 (mon.0) 191 : cluster [DBG] Standby manager daemon smithi195.prtvdp started 2024-02-22T22:22:56.308 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:55 smithi195 bash[18068]: audit 2024-02-22T22:22:55.901014+0000 mon.smithi049 (mon.0) 192 : audit [DBG] from='mgr.? 172.21.15.195:0/1625530230' entity='mgr.smithi195.prtvdp' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-02-22T22:22:56.308 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:55 smithi195 bash[18068]: audit 2024-02-22T22:22:55.904544+0000 mon.smithi049 (mon.0) 193 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:56.308 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:55 smithi195 bash[18068]: audit 2024-02-22T22:22:55.904884+0000 mon.smithi049 (mon.0) 194 : audit [DBG] from='mgr.? 172.21.15.195:0/1625530230' entity='mgr.smithi195.prtvdp' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi195.prtvdp/key"}]: dispatch 2024-02-22T22:22:56.308 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:55 smithi195 bash[18068]: audit 2024-02-22T22:22:55.905691+0000 mon.smithi049 (mon.0) 195 : audit [DBG] from='mgr.? 172.21.15.195:0/1625530230' entity='mgr.smithi195.prtvdp' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-02-22T22:22:56.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:55 smithi049 bash[14150]: audit 2024-02-22T22:22:50.828819+0000 mon.smithi049 (mon.0) 175 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-02-22T22:22:56.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:55 smithi049 bash[14150]: audit 2024-02-22T22:22:50.833493+0000 mon.smithi049 (mon.0) 176 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mon metadata", "id": "smithi049"}]: dispatch 2024-02-22T22:22:56.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:55 smithi049 bash[14150]: cluster 2024-02-22T22:22:50.833830+0000 mon.smithi049 (mon.0) 177 : cluster [INF] mon.smithi049 calling monitor election 2024-02-22T22:22:56.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:55 smithi049 bash[14150]: audit 2024-02-22T22:22:50.852147+0000 mon.smithi049 (mon.0) 178 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-02-22T22:22:56.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:55 smithi049 bash[14150]: cluster 2024-02-22T22:22:51.409305+0000 mgr.smithi049.pzczis (mgr.14180) 27 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:22:56.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:55 smithi049 bash[14150]: audit 2024-02-22T22:22:51.828372+0000 mon.smithi049 (mon.0) 179 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-02-22T22:22:56.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:55 smithi049 bash[14150]: audit 2024-02-22T22:22:52.787871+0000 mon.smithi049 (mon.0) 180 : audit [DBG] from='mgr.? 172.21.15.195:0/1625530230' entity='mgr.smithi195.prtvdp' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi195.prtvdp/crt"}]: dispatch 2024-02-22T22:22:56.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:55 smithi049 bash[14150]: audit 2024-02-22T22:22:52.828474+0000 mon.smithi049 (mon.0) 181 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-02-22T22:22:56.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:55 smithi049 bash[14150]: cluster 2024-02-22T22:22:52.829492+0000 mon.smithi195 (mon.1) 1 : cluster [INF] mon.smithi195 calling monitor election 2024-02-22T22:22:56.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:55 smithi049 bash[14150]: cluster 2024-02-22T22:22:53.409715+0000 mgr.smithi049.pzczis (mgr.14180) 28 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:22:56.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:55 smithi049 bash[14150]: audit 2024-02-22T22:22:53.828525+0000 mon.smithi049 (mon.0) 182 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-02-22T22:22:56.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:55 smithi049 bash[14150]: audit 2024-02-22T22:22:54.828994+0000 mon.smithi049 (mon.0) 183 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-02-22T22:22:56.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:55 smithi049 bash[14150]: cluster 2024-02-22T22:22:55.410105+0000 mgr.smithi049.pzczis (mgr.14180) 29 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:22:56.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:55 smithi049 bash[14150]: audit 2024-02-22T22:22:55.828802+0000 mon.smithi049 (mon.0) 184 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-02-22T22:22:56.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:55 smithi049 bash[14150]: cluster 2024-02-22T22:22:55.872109+0000 mon.smithi049 (mon.0) 185 : cluster [INF] mon.smithi049 is new leader, mons smithi049,smithi195 in quorum (ranks 0,1) 2024-02-22T22:22:56.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:55 smithi049 bash[14150]: cluster 2024-02-22T22:22:55.877449+0000 mon.smithi049 (mon.0) 186 : cluster [DBG] monmap e2: 2 mons at {smithi049=[v2:172.21.15.49:3300/0,v1:172.21.15.49:6789/0],smithi195=[v2:172.21.15.195:3300/0,v1:172.21.15.195:6789/0]} removed_ranks: {} 2024-02-22T22:22:56.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:55 smithi049 bash[14150]: cluster 2024-02-22T22:22:55.895623+0000 mon.smithi049 (mon.0) 187 : cluster [DBG] fsmap 2024-02-22T22:22:56.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:55 smithi049 bash[14150]: cluster 2024-02-22T22:22:55.895682+0000 mon.smithi049 (mon.0) 188 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-02-22T22:22:56.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:55 smithi049 bash[14150]: cluster 2024-02-22T22:22:55.896067+0000 mon.smithi049 (mon.0) 189 : cluster [DBG] mgrmap e17: smithi049.pzczis(active, since 48s) 2024-02-22T22:22:56.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:55 smithi049 bash[14150]: cluster 2024-02-22T22:22:55.896329+0000 mon.smithi049 (mon.0) 190 : cluster [INF] overall HEALTH_OK 2024-02-22T22:22:56.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:55 smithi049 bash[14150]: cluster 2024-02-22T22:22:55.898282+0000 mon.smithi049 (mon.0) 191 : cluster [DBG] Standby manager daemon smithi195.prtvdp started 2024-02-22T22:22:56.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:55 smithi049 bash[14150]: audit 2024-02-22T22:22:55.901014+0000 mon.smithi049 (mon.0) 192 : audit [DBG] from='mgr.? 172.21.15.195:0/1625530230' entity='mgr.smithi195.prtvdp' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-02-22T22:22:56.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:55 smithi049 bash[14150]: audit 2024-02-22T22:22:55.904544+0000 mon.smithi049 (mon.0) 193 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:56.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:55 smithi049 bash[14150]: audit 2024-02-22T22:22:55.904884+0000 mon.smithi049 (mon.0) 194 : audit [DBG] from='mgr.? 172.21.15.195:0/1625530230' entity='mgr.smithi195.prtvdp' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi195.prtvdp/key"}]: dispatch 2024-02-22T22:22:56.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:55 smithi049 bash[14150]: audit 2024-02-22T22:22:55.905691+0000 mon.smithi049 (mon.0) 195 : audit [DBG] from='mgr.? 172.21.15.195:0/1625530230' entity='mgr.smithi195.prtvdp' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-02-22T22:22:57.024 INFO:teuthology.orchestra.run.smithi195.stdout: 2024-02-22T22:22:57.024 INFO:teuthology.orchestra.run.smithi195.stdout:{"epoch":2,"fsid":"605df99c-d1d0-11ee-95c0-87774f69a715","modified":"2024-02-22T22:22:50.828188Z","created":"2024-02-22T22:19:50.905807Z","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":"smithi049","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:3300","nonce":0},{"type":"v1","addr":"172.21.15.49:6789","nonce":0}]},"addr":"172.21.15.49:6789/0","public_addr":"172.21.15.49:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi195","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:3300","nonce":0},{"type":"v1","addr":"172.21.15.195:6789","nonce":0}]},"addr":"172.21.15.195:6789/0","public_addr":"172.21.15.195:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-02-22T22:22:57.027 INFO:teuthology.orchestra.run.smithi195.stderr:dumped monmap epoch 2 2024-02-22T22:22:57.225 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:56 smithi195 bash[18068]: cluster 2024-02-22T22:22:55.962172+0000 mon.smithi049 (mon.0) 196 : cluster [DBG] mgrmap e18: smithi049.pzczis(active, since 48s), standbys: smithi195.prtvdp 2024-02-22T22:22:57.226 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:56 smithi195 bash[18068]: audit 2024-02-22T22:22:55.962416+0000 mon.smithi049 (mon.0) 197 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mgr metadata", "who": "smithi195.prtvdp", "id": "smithi195.prtvdp"}]: dispatch 2024-02-22T22:22:57.226 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:56 smithi195 bash[18068]: audit 2024-02-22T22:22:56.781552+0000 mon.smithi049 (mon.0) 198 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:57.226 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:56 smithi195 bash[18068]: audit 2024-02-22T22:22:56.782960+0000 mon.smithi049 (mon.0) 199 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:22:57.226 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:56 smithi195 bash[18068]: audit 2024-02-22T22:22:56.784588+0000 mon.smithi049 (mon.0) 200 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:22:57.226 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:56 smithi195 bash[18068]: audit 2024-02-22T22:22:56.820786+0000 mon.smithi049 (mon.0) 201 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:57.226 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:56 smithi195 bash[18068]: audit 2024-02-22T22:22:56.825647+0000 mon.smithi049 (mon.0) 202 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:57.226 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:56 smithi195 bash[18068]: audit 2024-02-22T22:22:56.829066+0000 mon.smithi049 (mon.0) 203 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-02-22T22:22:57.226 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:56 smithi195 bash[18068]: audit 2024-02-22T22:22:56.831210+0000 mon.smithi049 (mon.0) 204 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:57.226 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:56 smithi195 bash[18068]: audit 2024-02-22T22:22:56.837343+0000 mon.smithi049 (mon.0) 205 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-22T22:22:57.226 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:56 smithi195 bash[18068]: audit 2024-02-22T22:22:56.838812+0000 mon.smithi049 (mon.0) 206 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-02-22T22:22:57.226 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:56 smithi195 bash[18068]: audit 2024-02-22T22:22:56.840266+0000 mon.smithi049 (mon.0) 207 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:22:57.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:56 smithi049 bash[14150]: cluster 2024-02-22T22:22:55.962172+0000 mon.smithi049 (mon.0) 196 : cluster [DBG] mgrmap e18: smithi049.pzczis(active, since 48s), standbys: smithi195.prtvdp 2024-02-22T22:22:57.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:56 smithi049 bash[14150]: audit 2024-02-22T22:22:55.962416+0000 mon.smithi049 (mon.0) 197 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mgr metadata", "who": "smithi195.prtvdp", "id": "smithi195.prtvdp"}]: dispatch 2024-02-22T22:22:57.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:56 smithi049 bash[14150]: audit 2024-02-22T22:22:56.781552+0000 mon.smithi049 (mon.0) 198 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:57.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:56 smithi049 bash[14150]: audit 2024-02-22T22:22:56.782960+0000 mon.smithi049 (mon.0) 199 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:22:57.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:56 smithi049 bash[14150]: audit 2024-02-22T22:22:56.784588+0000 mon.smithi049 (mon.0) 200 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:22:57.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:56 smithi049 bash[14150]: audit 2024-02-22T22:22:56.820786+0000 mon.smithi049 (mon.0) 201 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:57.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:56 smithi049 bash[14150]: audit 2024-02-22T22:22:56.825647+0000 mon.smithi049 (mon.0) 202 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:57.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:56 smithi049 bash[14150]: audit 2024-02-22T22:22:56.829066+0000 mon.smithi049 (mon.0) 203 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-02-22T22:22:57.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:56 smithi049 bash[14150]: audit 2024-02-22T22:22:56.831210+0000 mon.smithi049 (mon.0) 204 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:22:57.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:56 smithi049 bash[14150]: audit 2024-02-22T22:22:56.837343+0000 mon.smithi049 (mon.0) 205 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-22T22:22:57.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:56 smithi049 bash[14150]: audit 2024-02-22T22:22:56.838812+0000 mon.smithi049 (mon.0) 206 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-02-22T22:22:57.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:56 smithi049 bash[14150]: audit 2024-02-22T22:22:56.840266+0000 mon.smithi049 (mon.0) 207 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:22:57.771 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-02-22T22:22:57.772 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph config generate-minimal-conf 2024-02-22T22:22:58.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:57 smithi195 bash[18068]: cephadm 2024-02-22T22:22:56.786444+0000 mgr.smithi049.pzczis (mgr.14180) 30 : cephadm [INF] Updating smithi049:/etc/ceph/ceph.conf 2024-02-22T22:22:58.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:57 smithi195 bash[18068]: cephadm 2024-02-22T22:22:56.786921+0000 mgr.smithi049.pzczis (mgr.14180) 31 : cephadm [INF] Updating smithi195:/etc/ceph/ceph.conf 2024-02-22T22:22:58.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:57 smithi195 bash[18068]: cephadm 2024-02-22T22:22:56.836864+0000 mgr.smithi049.pzczis (mgr.14180) 32 : cephadm [INF] Reconfiguring mon.smithi049 (unknown last config time)... 2024-02-22T22:22:58.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:57 smithi195 bash[18068]: cephadm 2024-02-22T22:22:56.841494+0000 mgr.smithi049.pzczis (mgr.14180) 33 : cephadm [INF] Reconfiguring daemon mon.smithi049 on smithi049 2024-02-22T22:22:58.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:57 smithi195 bash[18068]: audit 2024-02-22T22:22:57.022510+0000 mon.smithi049 (mon.0) 208 : audit [DBG] from='client.? 172.21.15.195:0/3596149646' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-22T22:22:58.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:22:57 smithi195 bash[18068]: cluster 2024-02-22T22:22:57.410528+0000 mgr.smithi049.pzczis (mgr.14180) 34 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:22:58.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:57 smithi049 bash[14150]: cephadm 2024-02-22T22:22:56.786444+0000 mgr.smithi049.pzczis (mgr.14180) 30 : cephadm [INF] Updating smithi049:/etc/ceph/ceph.conf 2024-02-22T22:22:58.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:57 smithi049 bash[14150]: cephadm 2024-02-22T22:22:56.786921+0000 mgr.smithi049.pzczis (mgr.14180) 31 : cephadm [INF] Updating smithi195:/etc/ceph/ceph.conf 2024-02-22T22:22:58.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:57 smithi049 bash[14150]: cephadm 2024-02-22T22:22:56.836864+0000 mgr.smithi049.pzczis (mgr.14180) 32 : cephadm [INF] Reconfiguring mon.smithi049 (unknown last config time)... 2024-02-22T22:22:58.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:57 smithi049 bash[14150]: cephadm 2024-02-22T22:22:56.841494+0000 mgr.smithi049.pzczis (mgr.14180) 33 : cephadm [INF] Reconfiguring daemon mon.smithi049 on smithi049 2024-02-22T22:22:58.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:57 smithi049 bash[14150]: audit 2024-02-22T22:22:57.022510+0000 mon.smithi049 (mon.0) 208 : audit [DBG] from='client.? 172.21.15.195:0/3596149646' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-22T22:22:58.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:22:57 smithi049 bash[14150]: cluster 2024-02-22T22:22:57.410528+0000 mgr.smithi049.pzczis (mgr.14180) 34 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:00.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:00 smithi195 bash[18068]: audit 2024-02-22T22:22:59.291284+0000 mon.smithi049 (mon.0) 209 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:00.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:00 smithi195 bash[18068]: cephadm 2024-02-22T22:22:59.292342+0000 mgr.smithi049.pzczis (mgr.14180) 35 : cephadm [INF] Reconfiguring mgr.smithi049.pzczis (unknown last config time)... 2024-02-22T22:23:00.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:00 smithi195 bash[18068]: audit 2024-02-22T22:22:59.292970+0000 mon.smithi049 (mon.0) 210 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi049.pzczis", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-22T22:23:00.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:00 smithi195 bash[18068]: audit 2024-02-22T22:22:59.294551+0000 mon.smithi049 (mon.0) 211 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-22T22:23:00.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:00 smithi195 bash[18068]: audit 2024-02-22T22:22:59.295826+0000 mon.smithi049 (mon.0) 212 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:23:00.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:00 smithi195 bash[18068]: cephadm 2024-02-22T22:22:59.296946+0000 mgr.smithi049.pzczis (mgr.14180) 36 : cephadm [INF] Reconfiguring daemon mgr.smithi049.pzczis on smithi049 2024-02-22T22:23:00.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:00 smithi195 bash[18068]: cluster 2024-02-22T22:22:59.410912+0000 mgr.smithi049.pzczis (mgr.14180) 37 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:00.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:00 smithi049 bash[14150]: audit 2024-02-22T22:22:59.291284+0000 mon.smithi049 (mon.0) 209 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:00.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:00 smithi049 bash[14150]: cephadm 2024-02-22T22:22:59.292342+0000 mgr.smithi049.pzczis (mgr.14180) 35 : cephadm [INF] Reconfiguring mgr.smithi049.pzczis (unknown last config time)... 2024-02-22T22:23:00.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:00 smithi049 bash[14150]: audit 2024-02-22T22:22:59.292970+0000 mon.smithi049 (mon.0) 210 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi049.pzczis", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-22T22:23:00.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:00 smithi049 bash[14150]: audit 2024-02-22T22:22:59.294551+0000 mon.smithi049 (mon.0) 211 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-22T22:23:00.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:00 smithi049 bash[14150]: audit 2024-02-22T22:22:59.295826+0000 mon.smithi049 (mon.0) 212 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:23:00.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:00 smithi049 bash[14150]: cephadm 2024-02-22T22:22:59.296946+0000 mgr.smithi049.pzczis (mgr.14180) 36 : cephadm [INF] Reconfiguring daemon mgr.smithi049.pzczis on smithi049 2024-02-22T22:23:00.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:00 smithi049 bash[14150]: cluster 2024-02-22T22:22:59.410912+0000 mgr.smithi049.pzczis (mgr.14180) 37 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:02.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:01 smithi195 bash[18068]: cluster 2024-02-22T22:23:01.411476+0000 mgr.smithi049.pzczis (mgr.14180) 38 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:02.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:01 smithi049 bash[14150]: cluster 2024-02-22T22:23:01.411476+0000 mgr.smithi049.pzczis (mgr.14180) 38 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:02.674 INFO:teuthology.orchestra.run.smithi049.stdout:# minimal ceph.conf for 605df99c-d1d0-11ee-95c0-87774f69a715 2024-02-22T22:23:02.674 INFO:teuthology.orchestra.run.smithi049.stdout:[global] 2024-02-22T22:23:02.674 INFO:teuthology.orchestra.run.smithi049.stdout: fsid = 605df99c-d1d0-11ee-95c0-87774f69a715 2024-02-22T22:23:02.674 INFO:teuthology.orchestra.run.smithi049.stdout: mon_host = [v2:172.21.15.49:3300/0,v1:172.21.15.49:6789/0] [v2:172.21.15.195:3300/0,v1:172.21.15.195:6789/0] 2024-02-22T22:23:03.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:03 smithi049 bash[14150]: audit 2024-02-22T22:23:02.355125+0000 mon.smithi049 (mon.0) 213 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:03.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:03 smithi049 bash[14150]: cephadm 2024-02-22T22:23:02.356259+0000 mgr.smithi049.pzczis (mgr.14180) 39 : cephadm [INF] Reconfiguring alertmanager.smithi049 (dependencies changed)... 2024-02-22T22:23:03.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:03 smithi049 bash[14150]: cephadm 2024-02-22T22:23:02.365731+0000 mgr.smithi049.pzczis (mgr.14180) 40 : cephadm [INF] Reconfiguring daemon alertmanager.smithi049 on smithi049 2024-02-22T22:23:03.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:03 smithi049 bash[14150]: audit 2024-02-22T22:23:02.672893+0000 mon.smithi049 (mon.0) 214 : audit [DBG] from='client.? 172.21.15.49:0/3009808995' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:23:03.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:03 smithi195 bash[18068]: audit 2024-02-22T22:23:02.355125+0000 mon.smithi049 (mon.0) 213 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:03.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:03 smithi195 bash[18068]: cephadm 2024-02-22T22:23:02.356259+0000 mgr.smithi049.pzczis (mgr.14180) 39 : cephadm [INF] Reconfiguring alertmanager.smithi049 (dependencies changed)... 2024-02-22T22:23:03.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:03 smithi195 bash[18068]: cephadm 2024-02-22T22:23:02.365731+0000 mgr.smithi049.pzczis (mgr.14180) 40 : cephadm [INF] Reconfiguring daemon alertmanager.smithi049 on smithi049 2024-02-22T22:23:03.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:03 smithi195 bash[18068]: audit 2024-02-22T22:23:02.672893+0000 mon.smithi049 (mon.0) 214 : audit [DBG] from='client.? 172.21.15.49:0/3009808995' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:23:04.143 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-02-22T22:23:04.143 DEBUG:teuthology.orchestra.run.smithi049:> set -ex 2024-02-22T22:23:04.144 DEBUG:teuthology.orchestra.run.smithi049:> sudo dd of=/etc/ceph/ceph.conf 2024-02-22T22:23:04.157 DEBUG:teuthology.orchestra.run.smithi049:> set -ex 2024-02-22T22:23:04.157 DEBUG:teuthology.orchestra.run.smithi049:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-02-22T22:23:04.213 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-02-22T22:23:04.213 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd of=/etc/ceph/ceph.conf 2024-02-22T22:23:04.231 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-02-22T22:23:04.231 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-02-22T22:23:04.291 INFO:tasks.cephadm:Deploying OSDs... 2024-02-22T22:23:04.291 DEBUG:teuthology.orchestra.run.smithi049:> set -ex 2024-02-22T22:23:04.291 DEBUG:teuthology.orchestra.run.smithi049:> dd if=/scratch_devs of=/dev/stdout 2024-02-22T22:23:04.298 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-02-22T22:23:04.298 DEBUG:teuthology.orchestra.run.smithi049:> stat /dev/nvme1n1 2024-02-22T22:23:04.347 INFO:teuthology.orchestra.run.smithi049.stdout: File: /dev/nvme1n1 2024-02-22T22:23:04.347 INFO:teuthology.orchestra.run.smithi049.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-22T22:23:04.347 INFO:teuthology.orchestra.run.smithi049.stdout:Device: 5h/5d Inode: 526 Links: 1 Device type: 103,2 2024-02-22T22:23:04.347 INFO:teuthology.orchestra.run.smithi049.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-22T22:23:04.347 INFO:teuthology.orchestra.run.smithi049.stdout:Access: 2024-02-22 22:21:21.971760434 +0000 2024-02-22T22:23:04.347 INFO:teuthology.orchestra.run.smithi049.stdout:Modify: 2024-02-22 22:18:57.611912577 +0000 2024-02-22T22:23:04.347 INFO:teuthology.orchestra.run.smithi049.stdout:Change: 2024-02-22 22:18:57.611912577 +0000 2024-02-22T22:23:04.347 INFO:teuthology.orchestra.run.smithi049.stdout: Birth: - 2024-02-22T22:23:04.347 DEBUG:teuthology.orchestra.run.smithi049:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-02-22T22:23:04.402 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:04 smithi049 bash[14150]: cluster 2024-02-22T22:23:03.411945+0000 mgr.smithi049.pzczis (mgr.14180) 41 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:04.404 INFO:teuthology.orchestra.run.smithi049.stderr:1+0 records in 2024-02-22T22:23:04.404 INFO:teuthology.orchestra.run.smithi049.stderr:1+0 records out 2024-02-22T22:23:04.404 INFO:teuthology.orchestra.run.smithi049.stderr:512 bytes copied, 0.000411071 s, 1.2 MB/s 2024-02-22T22:23:04.406 DEBUG:teuthology.orchestra.run.smithi049:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-02-22T22:23:04.456 DEBUG:teuthology.orchestra.run.smithi049:> stat /dev/nvme2n1 2024-02-22T22:23:04.506 INFO:teuthology.orchestra.run.smithi049.stdout: File: /dev/nvme2n1 2024-02-22T22:23:04.506 INFO:teuthology.orchestra.run.smithi049.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-22T22:23:04.506 INFO:teuthology.orchestra.run.smithi049.stdout:Device: 5h/5d Inode: 534 Links: 1 Device type: 103,4 2024-02-22T22:23:04.506 INFO:teuthology.orchestra.run.smithi049.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-22T22:23:04.506 INFO:teuthology.orchestra.run.smithi049.stdout:Access: 2024-02-22 22:21:21.983760157 +0000 2024-02-22T22:23:04.506 INFO:teuthology.orchestra.run.smithi049.stdout:Modify: 2024-02-22 22:18:57.727851901 +0000 2024-02-22T22:23:04.506 INFO:teuthology.orchestra.run.smithi049.stdout:Change: 2024-02-22 22:18:57.727851901 +0000 2024-02-22T22:23:04.506 INFO:teuthology.orchestra.run.smithi049.stdout: Birth: - 2024-02-22T22:23:04.506 DEBUG:teuthology.orchestra.run.smithi049:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-02-22T22:23:04.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:04 smithi195 bash[18068]: cluster 2024-02-22T22:23:03.411945+0000 mgr.smithi049.pzczis (mgr.14180) 41 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:04.556 INFO:teuthology.orchestra.run.smithi049.stderr:1+0 records in 2024-02-22T22:23:04.556 INFO:teuthology.orchestra.run.smithi049.stderr:1+0 records out 2024-02-22T22:23:04.556 INFO:teuthology.orchestra.run.smithi049.stderr:512 bytes copied, 0.000301381 s, 1.7 MB/s 2024-02-22T22:23:04.557 DEBUG:teuthology.orchestra.run.smithi049:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-02-22T22:23:04.607 DEBUG:teuthology.orchestra.run.smithi049:> stat /dev/nvme3n1 2024-02-22T22:23:04.658 INFO:teuthology.orchestra.run.smithi049.stdout: File: /dev/nvme3n1 2024-02-22T22:23:04.658 INFO:teuthology.orchestra.run.smithi049.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-22T22:23:04.658 INFO:teuthology.orchestra.run.smithi049.stdout:Device: 5h/5d Inode: 542 Links: 1 Device type: 103,6 2024-02-22T22:23:04.658 INFO:teuthology.orchestra.run.smithi049.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-22T22:23:04.658 INFO:teuthology.orchestra.run.smithi049.stdout:Access: 2024-02-22 22:21:22.003759697 +0000 2024-02-22T22:23:04.658 INFO:teuthology.orchestra.run.smithi049.stdout:Modify: 2024-02-22 22:18:57.847789134 +0000 2024-02-22T22:23:04.658 INFO:teuthology.orchestra.run.smithi049.stdout:Change: 2024-02-22 22:18:57.847789134 +0000 2024-02-22T22:23:04.658 INFO:teuthology.orchestra.run.smithi049.stdout: Birth: - 2024-02-22T22:23:04.659 DEBUG:teuthology.orchestra.run.smithi049:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-02-22T22:23:04.714 INFO:teuthology.orchestra.run.smithi049.stderr:1+0 records in 2024-02-22T22:23:04.714 INFO:teuthology.orchestra.run.smithi049.stderr:1+0 records out 2024-02-22T22:23:04.714 INFO:teuthology.orchestra.run.smithi049.stderr:512 bytes copied, 0.000246586 s, 2.1 MB/s 2024-02-22T22:23:04.715 DEBUG:teuthology.orchestra.run.smithi049:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-02-22T22:23:04.770 DEBUG:teuthology.orchestra.run.smithi049:> stat /dev/nvme4n1 2024-02-22T22:23:04.818 INFO:teuthology.orchestra.run.smithi049.stdout: File: /dev/nvme4n1 2024-02-22T22:23:04.818 INFO:teuthology.orchestra.run.smithi049.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-22T22:23:04.818 INFO:teuthology.orchestra.run.smithi049.stdout:Device: 5h/5d Inode: 550 Links: 1 Device type: 103,8 2024-02-22T22:23:04.818 INFO:teuthology.orchestra.run.smithi049.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-22T22:23:04.818 INFO:teuthology.orchestra.run.smithi049.stdout:Access: 2024-02-22 22:21:22.015759419 +0000 2024-02-22T22:23:04.818 INFO:teuthology.orchestra.run.smithi049.stdout:Modify: 2024-02-22 22:18:57.959730552 +0000 2024-02-22T22:23:04.818 INFO:teuthology.orchestra.run.smithi049.stdout:Change: 2024-02-22 22:18:57.959730552 +0000 2024-02-22T22:23:04.818 INFO:teuthology.orchestra.run.smithi049.stdout: Birth: - 2024-02-22T22:23:04.818 DEBUG:teuthology.orchestra.run.smithi049:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-02-22T22:23:04.872 INFO:teuthology.orchestra.run.smithi049.stderr:1+0 records in 2024-02-22T22:23:04.872 INFO:teuthology.orchestra.run.smithi049.stderr:1+0 records out 2024-02-22T22:23:04.873 INFO:teuthology.orchestra.run.smithi049.stderr:512 bytes copied, 0.000219907 s, 2.3 MB/s 2024-02-22T22:23:04.873 DEBUG:teuthology.orchestra.run.smithi049:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-02-22T22:23:04.928 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-02-22T22:23:04.928 DEBUG:teuthology.orchestra.run.smithi195:> dd if=/scratch_devs of=/dev/stdout 2024-02-22T22:23:04.935 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-02-22T22:23:04.936 DEBUG:teuthology.orchestra.run.smithi195:> stat /dev/nvme1n1 2024-02-22T22:23:04.989 INFO:teuthology.orchestra.run.smithi195.stdout: File: /dev/nvme1n1 2024-02-22T22:23:04.990 INFO:teuthology.orchestra.run.smithi195.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-22T22:23:04.990 INFO:teuthology.orchestra.run.smithi195.stdout:Device: 5h/5d Inode: 526 Links: 1 Device type: 103,2 2024-02-22T22:23:04.990 INFO:teuthology.orchestra.run.smithi195.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-22T22:23:04.990 INFO:teuthology.orchestra.run.smithi195.stdout:Access: 2024-02-22 22:22:34.846948275 +0000 2024-02-22T22:23:04.990 INFO:teuthology.orchestra.run.smithi195.stdout:Modify: 2024-02-22 22:18:58.940646929 +0000 2024-02-22T22:23:04.990 INFO:teuthology.orchestra.run.smithi195.stdout:Change: 2024-02-22 22:18:58.940646929 +0000 2024-02-22T22:23:04.990 INFO:teuthology.orchestra.run.smithi195.stdout: Birth: - 2024-02-22T22:23:04.990 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-02-22T22:23:05.045 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records in 2024-02-22T22:23:05.045 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records out 2024-02-22T22:23:05.045 INFO:teuthology.orchestra.run.smithi195.stderr:512 bytes copied, 0.000356177 s, 1.4 MB/s 2024-02-22T22:23:05.046 DEBUG:teuthology.orchestra.run.smithi195:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-02-22T22:23:05.099 DEBUG:teuthology.orchestra.run.smithi195:> stat /dev/nvme2n1 2024-02-22T22:23:05.150 INFO:teuthology.orchestra.run.smithi195.stdout: File: /dev/nvme2n1 2024-02-22T22:23:05.150 INFO:teuthology.orchestra.run.smithi195.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-22T22:23:05.150 INFO:teuthology.orchestra.run.smithi195.stdout:Device: 5h/5d Inode: 534 Links: 1 Device type: 103,4 2024-02-22T22:23:05.150 INFO:teuthology.orchestra.run.smithi195.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-22T22:23:05.150 INFO:teuthology.orchestra.run.smithi195.stdout:Access: 2024-02-22 22:22:34.862947634 +0000 2024-02-22T22:23:05.150 INFO:teuthology.orchestra.run.smithi195.stdout:Modify: 2024-02-22 22:18:59.056702254 +0000 2024-02-22T22:23:05.150 INFO:teuthology.orchestra.run.smithi195.stdout:Change: 2024-02-22 22:18:59.056702254 +0000 2024-02-22T22:23:05.150 INFO:teuthology.orchestra.run.smithi195.stdout: Birth: - 2024-02-22T22:23:05.151 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-02-22T22:23:05.203 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records in 2024-02-22T22:23:05.203 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records out 2024-02-22T22:23:05.204 INFO:teuthology.orchestra.run.smithi195.stderr:512 bytes copied, 0.000360367 s, 1.4 MB/s 2024-02-22T22:23:05.205 DEBUG:teuthology.orchestra.run.smithi195:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-02-22T22:23:05.255 DEBUG:teuthology.orchestra.run.smithi195:> stat /dev/nvme3n1 2024-02-22T22:23:05.307 INFO:teuthology.orchestra.run.smithi195.stdout: File: /dev/nvme3n1 2024-02-22T22:23:05.307 INFO:teuthology.orchestra.run.smithi195.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-22T22:23:05.307 INFO:teuthology.orchestra.run.smithi195.stdout:Device: 5h/5d Inode: 542 Links: 1 Device type: 103,6 2024-02-22T22:23:05.307 INFO:teuthology.orchestra.run.smithi195.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-22T22:23:05.307 INFO:teuthology.orchestra.run.smithi195.stdout:Access: 2024-02-22 22:22:34.882946832 +0000 2024-02-22T22:23:05.307 INFO:teuthology.orchestra.run.smithi195.stdout:Modify: 2024-02-22 22:18:59.172757579 +0000 2024-02-22T22:23:05.307 INFO:teuthology.orchestra.run.smithi195.stdout:Change: 2024-02-22 22:18:59.172757579 +0000 2024-02-22T22:23:05.307 INFO:teuthology.orchestra.run.smithi195.stdout: Birth: - 2024-02-22T22:23:05.308 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-02-22T22:23:05.363 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records in 2024-02-22T22:23:05.363 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records out 2024-02-22T22:23:05.363 INFO:teuthology.orchestra.run.smithi195.stderr:512 bytes copied, 0.000301376 s, 1.7 MB/s 2024-02-22T22:23:05.364 DEBUG:teuthology.orchestra.run.smithi195:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-02-22T22:23:05.415 DEBUG:teuthology.orchestra.run.smithi195:> stat /dev/nvme4n1 2024-02-22T22:23:05.466 INFO:teuthology.orchestra.run.smithi195.stdout: File: /dev/nvme4n1 2024-02-22T22:23:05.466 INFO:teuthology.orchestra.run.smithi195.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-22T22:23:05.466 INFO:teuthology.orchestra.run.smithi195.stdout:Device: 5h/5d Inode: 550 Links: 1 Device type: 103,8 2024-02-22T22:23:05.466 INFO:teuthology.orchestra.run.smithi195.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-22T22:23:05.466 INFO:teuthology.orchestra.run.smithi195.stdout:Access: 2024-02-22 22:22:34.898946192 +0000 2024-02-22T22:23:05.466 INFO:teuthology.orchestra.run.smithi195.stdout:Modify: 2024-02-22 22:18:59.288812904 +0000 2024-02-22T22:23:05.466 INFO:teuthology.orchestra.run.smithi195.stdout:Change: 2024-02-22 22:18:59.288812904 +0000 2024-02-22T22:23:05.467 INFO:teuthology.orchestra.run.smithi195.stdout: Birth: - 2024-02-22T22:23:05.467 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-02-22T22:23:05.519 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records in 2024-02-22T22:23:05.519 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records out 2024-02-22T22:23:05.520 INFO:teuthology.orchestra.run.smithi195.stderr:512 bytes copied, 0.000240262 s, 2.1 MB/s 2024-02-22T22:23:05.520 DEBUG:teuthology.orchestra.run.smithi195:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-02-22T22:23:05.571 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch apply osd --all-available-devices 2024-02-22T22:23:06.727 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:06 smithi049 bash[14150]: cluster 2024-02-22T22:23:05.412275+0000 mgr.smithi049.pzczis (mgr.14180) 42 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:06.735 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:06 smithi195 bash[18068]: cluster 2024-02-22T22:23:05.412275+0000 mgr.smithi049.pzczis (mgr.14180) 42 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:08.655 INFO:teuthology.orchestra.run.smithi195.stdout:Scheduled osd.all-available-devices update... 2024-02-22T22:23:08.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:08 smithi049 bash[14150]: cluster 2024-02-22T22:23:07.412591+0000 mgr.smithi049.pzczis (mgr.14180) 43 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:08.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:08 smithi049 bash[14150]: audit 2024-02-22T22:23:07.477226+0000 mon.smithi049 (mon.0) 215 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:08.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:08 smithi049 bash[14150]: cephadm 2024-02-22T22:23:07.478439+0000 mgr.smithi049.pzczis (mgr.14180) 44 : cephadm [INF] Reconfiguring crash.smithi049 (monmap changed)... 2024-02-22T22:23:08.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:08 smithi049 bash[14150]: audit 2024-02-22T22:23:07.478950+0000 mon.smithi049 (mon.0) 216 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi049", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-22T22:23:08.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:08 smithi049 bash[14150]: audit 2024-02-22T22:23:07.480578+0000 mon.smithi049 (mon.0) 217 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:23:08.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:08 smithi049 bash[14150]: cephadm 2024-02-22T22:23:07.481848+0000 mgr.smithi049.pzczis (mgr.14180) 45 : cephadm [INF] Reconfiguring daemon crash.smithi049 on smithi049 2024-02-22T22:23:08.733 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:08 smithi195 bash[18068]: cluster 2024-02-22T22:23:07.412591+0000 mgr.smithi049.pzczis (mgr.14180) 43 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:08.733 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:08 smithi195 bash[18068]: audit 2024-02-22T22:23:07.477226+0000 mon.smithi049 (mon.0) 215 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:08.734 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:08 smithi195 bash[18068]: cephadm 2024-02-22T22:23:07.478439+0000 mgr.smithi049.pzczis (mgr.14180) 44 : cephadm [INF] Reconfiguring crash.smithi049 (monmap changed)... 2024-02-22T22:23:08.734 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:08 smithi195 bash[18068]: audit 2024-02-22T22:23:07.478950+0000 mon.smithi049 (mon.0) 216 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi049", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-22T22:23:08.734 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:08 smithi195 bash[18068]: audit 2024-02-22T22:23:07.480578+0000 mon.smithi049 (mon.0) 217 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:23:08.734 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:08 smithi195 bash[18068]: cephadm 2024-02-22T22:23:07.481848+0000 mgr.smithi049.pzczis (mgr.14180) 45 : cephadm [INF] Reconfiguring daemon crash.smithi049 on smithi049 2024-02-22T22:23:09.424 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-02-22T22:23:09.424 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-22T22:23:09.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:09 smithi049 bash[14150]: audit 2024-02-22T22:23:08.644659+0000 mgr.smithi049.pzczis (mgr.14180) 46 : audit [DBG] from='client.24103 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:23:09.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:09 smithi049 bash[14150]: cephadm 2024-02-22T22:23:08.648473+0000 mgr.smithi049.pzczis (mgr.14180) 47 : cephadm [INF] Marking host: smithi049 for OSDSpec preview refresh. 2024-02-22T22:23:09.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:09 smithi049 bash[14150]: cephadm 2024-02-22T22:23:08.648625+0000 mgr.smithi049.pzczis (mgr.14180) 48 : cephadm [INF] Marking host: smithi195 for OSDSpec preview refresh. 2024-02-22T22:23:09.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:09 smithi049 bash[14150]: cephadm 2024-02-22T22:23:08.649324+0000 mgr.smithi049.pzczis (mgr.14180) 49 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-02-22T22:23:09.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:09 smithi049 bash[14150]: audit 2024-02-22T22:23:08.653480+0000 mon.smithi049 (mon.0) 218 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:09.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:09 smithi049 bash[14150]: cluster 2024-02-22T22:23:09.413173+0000 mgr.smithi049.pzczis (mgr.14180) 50 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:09.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:09 smithi195 bash[18068]: audit 2024-02-22T22:23:08.644659+0000 mgr.smithi049.pzczis (mgr.14180) 46 : audit [DBG] from='client.24103 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:23:09.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:09 smithi195 bash[18068]: cephadm 2024-02-22T22:23:08.648473+0000 mgr.smithi049.pzczis (mgr.14180) 47 : cephadm [INF] Marking host: smithi049 for OSDSpec preview refresh. 2024-02-22T22:23:09.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:09 smithi195 bash[18068]: cephadm 2024-02-22T22:23:08.648625+0000 mgr.smithi049.pzczis (mgr.14180) 48 : cephadm [INF] Marking host: smithi195 for OSDSpec preview refresh. 2024-02-22T22:23:09.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:09 smithi195 bash[18068]: cephadm 2024-02-22T22:23:08.649324+0000 mgr.smithi049.pzczis (mgr.14180) 49 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-02-22T22:23:09.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:09 smithi195 bash[18068]: audit 2024-02-22T22:23:08.653480+0000 mon.smithi049 (mon.0) 218 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:09.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:09 smithi195 bash[18068]: cluster 2024-02-22T22:23:09.413173+0000 mgr.smithi049.pzczis (mgr.14180) 50 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:11.170 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:11 smithi049 bash[14150]: audit 2024-02-22T22:23:10.048155+0000 mon.smithi049 (mon.0) 219 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:11.171 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:11 smithi049 bash[14150]: cephadm 2024-02-22T22:23:10.049108+0000 mgr.smithi049.pzczis (mgr.14180) 51 : cephadm [INF] Reconfiguring grafana.smithi049 (dependencies changed)... 2024-02-22T22:23:11.171 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:11 smithi049 bash[14150]: cephadm 2024-02-22T22:23:10.093138+0000 mgr.smithi049.pzczis (mgr.14180) 52 : cephadm [INF] Reconfiguring daemon grafana.smithi049 on smithi049 2024-02-22T22:23:11.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:11 smithi195 bash[18068]: audit 2024-02-22T22:23:10.048155+0000 mon.smithi049 (mon.0) 219 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:11.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:11 smithi195 bash[18068]: cephadm 2024-02-22T22:23:10.049108+0000 mgr.smithi049.pzczis (mgr.14180) 51 : cephadm [INF] Reconfiguring grafana.smithi049 (dependencies changed)... 2024-02-22T22:23:11.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:11 smithi195 bash[18068]: cephadm 2024-02-22T22:23:10.093138+0000 mgr.smithi049.pzczis (mgr.14180) 52 : cephadm [INF] Reconfiguring daemon grafana.smithi049 on smithi049 2024-02-22T22:23:12.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:12 smithi049 bash[14150]: cluster 2024-02-22T22:23:11.413628+0000 mgr.smithi049.pzczis (mgr.14180) 53 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:12.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:12 smithi195 bash[18068]: cluster 2024-02-22T22:23:11.413628+0000 mgr.smithi049.pzczis (mgr.14180) 53 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:13.923 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:23:14.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:14 smithi195 bash[18068]: cluster 2024-02-22T22:23:13.414048+0000 mgr.smithi049.pzczis (mgr.14180) 54 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:14.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:14 smithi195 bash[18068]: audit 2024-02-22T22:23:13.922106+0000 mon.smithi049 (mon.0) 220 : audit [DBG] from='client.? 172.21.15.49:0/3157459593' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:23:14.895 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:14 smithi049 bash[14150]: cluster 2024-02-22T22:23:13.414048+0000 mgr.smithi049.pzczis (mgr.14180) 54 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:14.895 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:14 smithi049 bash[14150]: audit 2024-02-22T22:23:13.922106+0000 mon.smithi049 (mon.0) 220 : audit [DBG] from='client.? 172.21.15.49:0/3157459593' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:23:15.075 INFO:teuthology.orchestra.run.smithi049.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-22T22:23:16.076 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-22T22:23:16.572 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:16 smithi049 bash[14150]: cluster 2024-02-22T22:23:15.414479+0000 mgr.smithi049.pzczis (mgr.14180) 55 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:16.573 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:16 smithi049 bash[14150]: audit 2024-02-22T22:23:15.736303+0000 mon.smithi049 (mon.0) 221 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:16.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:16 smithi195 bash[18068]: cluster 2024-02-22T22:23:15.414479+0000 mgr.smithi049.pzczis (mgr.14180) 55 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:16.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:16 smithi195 bash[18068]: audit 2024-02-22T22:23:15.736303+0000 mon.smithi049 (mon.0) 221 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:17.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:17 smithi195 bash[18068]: cephadm 2024-02-22T22:23:15.737640+0000 mgr.smithi049.pzczis (mgr.14180) 56 : cephadm [INF] Reconfiguring prometheus.smithi049 (dependencies changed)... 2024-02-22T22:23:17.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:17 smithi195 bash[18068]: cephadm 2024-02-22T22:23:15.742643+0000 mgr.smithi049.pzczis (mgr.14180) 57 : cephadm [INF] Reconfiguring daemon prometheus.smithi049 on smithi049 2024-02-22T22:23:17.864 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:17 smithi049 bash[14150]: cephadm 2024-02-22T22:23:15.737640+0000 mgr.smithi049.pzczis (mgr.14180) 56 : cephadm [INF] Reconfiguring prometheus.smithi049 (dependencies changed)... 2024-02-22T22:23:17.864 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:17 smithi049 bash[14150]: cephadm 2024-02-22T22:23:15.742643+0000 mgr.smithi049.pzczis (mgr.14180) 57 : cephadm [INF] Reconfiguring daemon prometheus.smithi049 on smithi049 2024-02-22T22:23:18.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:18 smithi049 bash[14150]: cluster 2024-02-22T22:23:17.414799+0000 mgr.smithi049.pzczis (mgr.14180) 58 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:18.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:18 smithi195 bash[18068]: cluster 2024-02-22T22:23:17.414799+0000 mgr.smithi049.pzczis (mgr.14180) 58 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:20.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:20 smithi195 bash[18068]: cluster 2024-02-22T22:23:19.415057+0000 mgr.smithi049.pzczis (mgr.14180) 59 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:20.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:20 smithi049 bash[14150]: cluster 2024-02-22T22:23:19.415057+0000 mgr.smithi049.pzczis (mgr.14180) 59 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:21.348 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:23:21.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:21 smithi049 bash[14150]: audit 2024-02-22T22:23:21.346319+0000 mon.smithi049 (mon.0) 222 : audit [DBG] from='client.? 172.21.15.49:0/2663415739' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:23:21.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:21 smithi195 bash[18068]: audit 2024-02-22T22:23:21.346319+0000 mon.smithi049 (mon.0) 222 : audit [DBG] from='client.? 172.21.15.49:0/2663415739' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:23:22.478 INFO:teuthology.orchestra.run.smithi049.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-22T22:23:22.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:22 smithi195 bash[18068]: cluster 2024-02-22T22:23:21.415425+0000 mgr.smithi049.pzczis (mgr.14180) 60 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:22.862 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:22 smithi049 bash[14150]: cluster 2024-02-22T22:23:21.415425+0000 mgr.smithi049.pzczis (mgr.14180) 60 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:23.479 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-22T22:23:24.388 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:24 smithi195 bash[18068]: audit 2024-02-22T22:23:23.106985+0000 mon.smithi049 (mon.0) 223 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:24.388 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:24 smithi195 bash[18068]: cephadm 2024-02-22T22:23:23.108392+0000 mgr.smithi049.pzczis (mgr.14180) 61 : cephadm [INF] Reconfiguring crash.smithi195 (monmap changed)... 2024-02-22T22:23:24.388 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:24 smithi195 bash[18068]: audit 2024-02-22T22:23:23.108979+0000 mon.smithi049 (mon.0) 224 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi195", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-22T22:23:24.388 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:24 smithi195 bash[18068]: audit 2024-02-22T22:23:23.110451+0000 mon.smithi049 (mon.0) 225 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:23:24.388 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:24 smithi195 bash[18068]: cephadm 2024-02-22T22:23:23.111673+0000 mgr.smithi049.pzczis (mgr.14180) 62 : cephadm [INF] Reconfiguring daemon crash.smithi195 on smithi195 2024-02-22T22:23:24.388 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:24 smithi195 bash[18068]: cluster 2024-02-22T22:23:23.415881+0000 mgr.smithi049.pzczis (mgr.14180) 63 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:24.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:24 smithi049 bash[14150]: audit 2024-02-22T22:23:23.106985+0000 mon.smithi049 (mon.0) 223 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:24.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:24 smithi049 bash[14150]: cephadm 2024-02-22T22:23:23.108392+0000 mgr.smithi049.pzczis (mgr.14180) 61 : cephadm [INF] Reconfiguring crash.smithi195 (monmap changed)... 2024-02-22T22:23:24.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:24 smithi049 bash[14150]: audit 2024-02-22T22:23:23.108979+0000 mon.smithi049 (mon.0) 224 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi195", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-22T22:23:24.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:24 smithi049 bash[14150]: audit 2024-02-22T22:23:23.110451+0000 mon.smithi049 (mon.0) 225 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:23:24.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:24 smithi049 bash[14150]: cephadm 2024-02-22T22:23:23.111673+0000 mgr.smithi049.pzczis (mgr.14180) 62 : cephadm [INF] Reconfiguring daemon crash.smithi195 on smithi195 2024-02-22T22:23:24.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:24 smithi049 bash[14150]: cluster 2024-02-22T22:23:23.415881+0000 mgr.smithi049.pzczis (mgr.14180) 63 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:26.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:26 smithi195 bash[18068]: audit 2024-02-22T22:23:25.058271+0000 mon.smithi049 (mon.0) 226 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:26.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:26 smithi195 bash[18068]: cephadm 2024-02-22T22:23:25.059604+0000 mgr.smithi049.pzczis (mgr.14180) 64 : cephadm [INF] Reconfiguring mgr.smithi195.prtvdp (monmap changed)... 2024-02-22T22:23:26.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:26 smithi195 bash[18068]: audit 2024-02-22T22:23:25.060012+0000 mon.smithi049 (mon.0) 227 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi195.prtvdp", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-22T22:23:26.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:26 smithi195 bash[18068]: audit 2024-02-22T22:23:25.061312+0000 mon.smithi049 (mon.0) 228 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-22T22:23:26.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:26 smithi195 bash[18068]: audit 2024-02-22T22:23:25.062330+0000 mon.smithi049 (mon.0) 229 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:23:26.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:26 smithi195 bash[18068]: cephadm 2024-02-22T22:23:25.063317+0000 mgr.smithi049.pzczis (mgr.14180) 65 : cephadm [INF] Reconfiguring daemon mgr.smithi195.prtvdp on smithi195 2024-02-22T22:23:26.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:26 smithi195 bash[18068]: cluster 2024-02-22T22:23:25.416301+0000 mgr.smithi049.pzczis (mgr.14180) 66 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:26.350 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:26 smithi049 bash[14150]: audit 2024-02-22T22:23:25.058271+0000 mon.smithi049 (mon.0) 226 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:26.350 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:26 smithi049 bash[14150]: cephadm 2024-02-22T22:23:25.059604+0000 mgr.smithi049.pzczis (mgr.14180) 64 : cephadm [INF] Reconfiguring mgr.smithi195.prtvdp (monmap changed)... 2024-02-22T22:23:26.350 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:26 smithi049 bash[14150]: audit 2024-02-22T22:23:25.060012+0000 mon.smithi049 (mon.0) 227 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi195.prtvdp", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-22T22:23:26.350 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:26 smithi049 bash[14150]: audit 2024-02-22T22:23:25.061312+0000 mon.smithi049 (mon.0) 228 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-22T22:23:26.351 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:26 smithi049 bash[14150]: audit 2024-02-22T22:23:25.062330+0000 mon.smithi049 (mon.0) 229 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:23:26.351 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:26 smithi049 bash[14150]: cephadm 2024-02-22T22:23:25.063317+0000 mgr.smithi049.pzczis (mgr.14180) 65 : cephadm [INF] Reconfiguring daemon mgr.smithi195.prtvdp on smithi195 2024-02-22T22:23:26.351 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:26 smithi049 bash[14150]: cluster 2024-02-22T22:23:25.416301+0000 mgr.smithi049.pzczis (mgr.14180) 66 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:26.755 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:23:27.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:27 smithi049 bash[14150]: audit 2024-02-22T22:23:26.753481+0000 mon.smithi049 (mon.0) 230 : audit [DBG] from='client.? 172.21.15.49:0/3902412173' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:23:27.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:27 smithi049 bash[14150]: audit 2024-02-22T22:23:26.891046+0000 mon.smithi049 (mon.0) 231 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:27.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:27 smithi049 bash[14150]: audit 2024-02-22T22:23:26.892822+0000 mon.smithi049 (mon.0) 232 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-22T22:23:27.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:27 smithi049 bash[14150]: audit 2024-02-22T22:23:26.894366+0000 mon.smithi049 (mon.0) 233 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-02-22T22:23:27.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:27 smithi049 bash[14150]: audit 2024-02-22T22:23:26.895611+0000 mon.smithi049 (mon.0) 234 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:23:27.417 INFO:teuthology.orchestra.run.smithi049.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-22T22:23:27.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:27 smithi195 bash[18068]: audit 2024-02-22T22:23:26.753481+0000 mon.smithi049 (mon.0) 230 : audit [DBG] from='client.? 172.21.15.49:0/3902412173' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:23:27.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:27 smithi195 bash[18068]: audit 2024-02-22T22:23:26.891046+0000 mon.smithi049 (mon.0) 231 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:27.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:27 smithi195 bash[18068]: audit 2024-02-22T22:23:26.892822+0000 mon.smithi049 (mon.0) 232 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-22T22:23:27.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:27 smithi195 bash[18068]: audit 2024-02-22T22:23:26.894366+0000 mon.smithi049 (mon.0) 233 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-02-22T22:23:27.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:27 smithi195 bash[18068]: audit 2024-02-22T22:23:26.895611+0000 mon.smithi049 (mon.0) 234 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:23:28.153 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:28 smithi195 bash[18068]: cephadm 2024-02-22T22:23:26.892276+0000 mgr.smithi049.pzczis (mgr.14180) 67 : cephadm [INF] Reconfiguring mon.smithi195 (monmap changed)... 2024-02-22T22:23:28.153 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:28 smithi195 bash[18068]: cephadm 2024-02-22T22:23:26.896752+0000 mgr.smithi049.pzczis (mgr.14180) 68 : cephadm [INF] Reconfiguring daemon mon.smithi195 on smithi195 2024-02-22T22:23:28.153 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:28 smithi195 bash[18068]: cluster 2024-02-22T22:23:27.416733+0000 mgr.smithi049.pzczis (mgr.14180) 69 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:28.419 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-22T22:23:28.432 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:28 smithi049 bash[14150]: cephadm 2024-02-22T22:23:26.892276+0000 mgr.smithi049.pzczis (mgr.14180) 67 : cephadm [INF] Reconfiguring mon.smithi195 (monmap changed)... 2024-02-22T22:23:28.432 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:28 smithi049 bash[14150]: cephadm 2024-02-22T22:23:26.896752+0000 mgr.smithi049.pzczis (mgr.14180) 68 : cephadm [INF] Reconfiguring daemon mon.smithi195 on smithi195 2024-02-22T22:23:28.432 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:28 smithi049 bash[14150]: cluster 2024-02-22T22:23:27.416733+0000 mgr.smithi049.pzczis (mgr.14180) 69 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:29.822 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:29 smithi049 bash[14150]: audit 2024-02-22T22:23:28.661289+0000 mon.smithi049 (mon.0) 235 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:29.823 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:29 smithi049 bash[14150]: audit 2024-02-22T22:23:28.665097+0000 mon.smithi049 (mon.0) 236 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-02-22T22:23:29.823 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:29 smithi049 bash[14150]: audit 2024-02-22T22:23:28.665626+0000 mgr.smithi049.pzczis (mgr.14180) 70 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-02-22T22:23:29.823 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:29 smithi049 bash[14150]: audit 2024-02-22T22:23:28.666992+0000 mon.smithi049 (mon.0) 237 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi049.front.sepia.ceph.com:9093"}]: dispatch 2024-02-22T22:23:29.823 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:29 smithi049 bash[14150]: audit 2024-02-22T22:23:28.667424+0000 mgr.smithi049.pzczis (mgr.14180) 71 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi049.front.sepia.ceph.com:9093"}]: dispatch 2024-02-22T22:23:29.823 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:29 smithi049 bash[14150]: audit 2024-02-22T22:23:28.672592+0000 mon.smithi049 (mon.0) 238 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:29.823 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:29 smithi049 bash[14150]: audit 2024-02-22T22:23:28.679747+0000 mon.smithi049 (mon.0) 239 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-02-22T22:23:29.823 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:29 smithi049 bash[14150]: audit 2024-02-22T22:23:28.680320+0000 mgr.smithi049.pzczis (mgr.14180) 72 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-02-22T22:23:29.823 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:29 smithi049 bash[14150]: audit 2024-02-22T22:23:28.687240+0000 mon.smithi049 (mon.0) 240 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi049.front.sepia.ceph.com:3000"}]: dispatch 2024-02-22T22:23:29.823 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:29 smithi049 bash[14150]: audit 2024-02-22T22:23:28.688087+0000 mgr.smithi049.pzczis (mgr.14180) 73 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi049.front.sepia.ceph.com:3000"}]: dispatch 2024-02-22T22:23:29.823 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:29 smithi049 bash[14150]: audit 2024-02-22T22:23:28.695967+0000 mon.smithi049 (mon.0) 241 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:29.823 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:29 smithi049 bash[14150]: audit 2024-02-22T22:23:28.704150+0000 mon.smithi049 (mon.0) 242 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-22T22:23:29.823 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:29 smithi049 bash[14150]: audit 2024-02-22T22:23:28.704809+0000 mgr.smithi049.pzczis (mgr.14180) 74 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-22T22:23:29.823 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:29 smithi049 bash[14150]: audit 2024-02-22T22:23:28.711914+0000 mon.smithi049 (mon.0) 243 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi049.front.sepia.ceph.com:9095"}]: dispatch 2024-02-22T22:23:29.824 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:29 smithi049 bash[14150]: audit 2024-02-22T22:23:28.712735+0000 mgr.smithi049.pzczis (mgr.14180) 75 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi049.front.sepia.ceph.com:9095"}]: dispatch 2024-02-22T22:23:29.824 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:29 smithi049 bash[14150]: audit 2024-02-22T22:23:28.719741+0000 mon.smithi049 (mon.0) 244 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:29.824 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:29 smithi049 bash[14150]: audit 2024-02-22T22:23:28.725457+0000 mon.smithi049 (mon.0) 245 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:23:29.824 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:29 smithi049 bash[14150]: cluster 2024-02-22T22:23:29.417131+0000 mgr.smithi049.pzczis (mgr.14180) 76 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:30.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:29 smithi195 bash[18068]: audit 2024-02-22T22:23:28.661289+0000 mon.smithi049 (mon.0) 235 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:30.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:29 smithi195 bash[18068]: audit 2024-02-22T22:23:28.665097+0000 mon.smithi049 (mon.0) 236 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-02-22T22:23:30.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:29 smithi195 bash[18068]: audit 2024-02-22T22:23:28.665626+0000 mgr.smithi049.pzczis (mgr.14180) 70 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-02-22T22:23:30.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:29 smithi195 bash[18068]: audit 2024-02-22T22:23:28.666992+0000 mon.smithi049 (mon.0) 237 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi049.front.sepia.ceph.com:9093"}]: dispatch 2024-02-22T22:23:30.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:29 smithi195 bash[18068]: audit 2024-02-22T22:23:28.667424+0000 mgr.smithi049.pzczis (mgr.14180) 71 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi049.front.sepia.ceph.com:9093"}]: dispatch 2024-02-22T22:23:30.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:29 smithi195 bash[18068]: audit 2024-02-22T22:23:28.672592+0000 mon.smithi049 (mon.0) 238 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:30.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:29 smithi195 bash[18068]: audit 2024-02-22T22:23:28.679747+0000 mon.smithi049 (mon.0) 239 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-02-22T22:23:30.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:29 smithi195 bash[18068]: audit 2024-02-22T22:23:28.680320+0000 mgr.smithi049.pzczis (mgr.14180) 72 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-02-22T22:23:30.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:29 smithi195 bash[18068]: audit 2024-02-22T22:23:28.687240+0000 mon.smithi049 (mon.0) 240 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi049.front.sepia.ceph.com:3000"}]: dispatch 2024-02-22T22:23:30.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:29 smithi195 bash[18068]: audit 2024-02-22T22:23:28.688087+0000 mgr.smithi049.pzczis (mgr.14180) 73 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi049.front.sepia.ceph.com:3000"}]: dispatch 2024-02-22T22:23:30.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:29 smithi195 bash[18068]: audit 2024-02-22T22:23:28.695967+0000 mon.smithi049 (mon.0) 241 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:30.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:29 smithi195 bash[18068]: audit 2024-02-22T22:23:28.704150+0000 mon.smithi049 (mon.0) 242 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-22T22:23:30.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:29 smithi195 bash[18068]: audit 2024-02-22T22:23:28.704809+0000 mgr.smithi049.pzczis (mgr.14180) 74 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-22T22:23:30.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:29 smithi195 bash[18068]: audit 2024-02-22T22:23:28.711914+0000 mon.smithi049 (mon.0) 243 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi049.front.sepia.ceph.com:9095"}]: dispatch 2024-02-22T22:23:30.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:29 smithi195 bash[18068]: audit 2024-02-22T22:23:28.712735+0000 mgr.smithi049.pzczis (mgr.14180) 75 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi049.front.sepia.ceph.com:9095"}]: dispatch 2024-02-22T22:23:30.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:29 smithi195 bash[18068]: audit 2024-02-22T22:23:28.719741+0000 mon.smithi049 (mon.0) 244 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:30.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:29 smithi195 bash[18068]: audit 2024-02-22T22:23:28.725457+0000 mon.smithi049 (mon.0) 245 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:23:30.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:29 smithi195 bash[18068]: cluster 2024-02-22T22:23:29.417131+0000 mgr.smithi049.pzczis (mgr.14180) 76 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:31.400 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:23:31.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:31 smithi195 bash[18068]: audit 2024-02-22T22:23:31.398660+0000 mon.smithi049 (mon.0) 246 : audit [DBG] from='client.? 172.21.15.49:0/1998302597' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:23:31.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:31 smithi049 bash[14150]: audit 2024-02-22T22:23:31.398660+0000 mon.smithi049 (mon.0) 246 : audit [DBG] from='client.? 172.21.15.49:0/1998302597' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:23:32.104 INFO:teuthology.orchestra.run.smithi049.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-22T22:23:32.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:32 smithi195 bash[18068]: cluster 2024-02-22T22:23:31.417620+0000 mgr.smithi049.pzczis (mgr.14180) 77 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:32.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:32 smithi049 bash[14150]: cluster 2024-02-22T22:23:31.417620+0000 mgr.smithi049.pzczis (mgr.14180) 77 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:33.105 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-22T22:23:34.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:34 smithi049 bash[14150]: cluster 2024-02-22T22:23:33.418131+0000 mgr.smithi049.pzczis (mgr.14180) 78 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:34.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:34 smithi049 bash[14150]: audit 2024-02-22T22:23:34.021484+0000 mon.smithi049 (mon.0) 247 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:34.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:34 smithi049 bash[14150]: audit 2024-02-22T22:23:34.027889+0000 mon.smithi049 (mon.0) 248 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:34.696 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:34 smithi049 bash[14150]: audit 2024-02-22T22:23:34.437216+0000 mon.smithi049 (mon.0) 249 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:34.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:34 smithi195 bash[18068]: cluster 2024-02-22T22:23:33.418131+0000 mgr.smithi049.pzczis (mgr.14180) 78 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:34.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:34 smithi195 bash[18068]: audit 2024-02-22T22:23:34.021484+0000 mon.smithi049 (mon.0) 247 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:34.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:34 smithi195 bash[18068]: audit 2024-02-22T22:23:34.027889+0000 mon.smithi049 (mon.0) 248 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:34.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:34 smithi195 bash[18068]: audit 2024-02-22T22:23:34.437216+0000 mon.smithi049 (mon.0) 249 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:36.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:35 smithi195 bash[18068]: audit 2024-02-22T22:23:34.711985+0000 mon.smithi049 (mon.0) 250 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:36.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:35 smithi195 bash[18068]: audit 2024-02-22T22:23:34.713194+0000 mon.smithi049 (mon.0) 251 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:23:36.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:35 smithi195 bash[18068]: audit 2024-02-22T22:23:34.714091+0000 mon.smithi049 (mon.0) 252 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:23:36.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:35 smithi195 bash[18068]: audit 2024-02-22T22:23:34.719536+0000 mon.smithi049 (mon.0) 253 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:36.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:35 smithi195 bash[18068]: audit 2024-02-22T22:23:34.724989+0000 mon.smithi049 (mon.0) 254 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:23:36.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:35 smithi195 bash[18068]: audit 2024-02-22T22:23:34.731037+0000 mon.smithi049 (mon.0) 255 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-22T22:23:36.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:35 smithi195 bash[18068]: audit 2024-02-22T22:23:34.732758+0000 mon.smithi049 (mon.0) 256 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-22T22:23:36.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:35 smithi195 bash[18068]: audit 2024-02-22T22:23:34.733045+0000 mon.smithi049 (mon.0) 257 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:23:36.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:35 smithi195 bash[18068]: audit 2024-02-22T22:23:34.733729+0000 mon.smithi049 (mon.0) 258 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:23:36.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:35 smithi195 bash[18068]: cluster 2024-02-22T22:23:35.418590+0000 mgr.smithi049.pzczis (mgr.14180) 79 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:36.112 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:23:36.167 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:35 smithi049 bash[14150]: audit 2024-02-22T22:23:34.711985+0000 mon.smithi049 (mon.0) 250 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:36.167 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:35 smithi049 bash[14150]: audit 2024-02-22T22:23:34.713194+0000 mon.smithi049 (mon.0) 251 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:23:36.167 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:35 smithi049 bash[14150]: audit 2024-02-22T22:23:34.714091+0000 mon.smithi049 (mon.0) 252 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:23:36.167 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:35 smithi049 bash[14150]: audit 2024-02-22T22:23:34.719536+0000 mon.smithi049 (mon.0) 253 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:23:36.167 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:35 smithi049 bash[14150]: audit 2024-02-22T22:23:34.724989+0000 mon.smithi049 (mon.0) 254 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:23:36.168 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:35 smithi049 bash[14150]: audit 2024-02-22T22:23:34.731037+0000 mon.smithi049 (mon.0) 255 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-22T22:23:36.168 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:35 smithi049 bash[14150]: audit 2024-02-22T22:23:34.732758+0000 mon.smithi049 (mon.0) 256 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-22T22:23:36.168 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:35 smithi049 bash[14150]: audit 2024-02-22T22:23:34.733045+0000 mon.smithi049 (mon.0) 257 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:23:36.168 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:35 smithi049 bash[14150]: audit 2024-02-22T22:23:34.733729+0000 mon.smithi049 (mon.0) 258 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:23:36.168 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:35 smithi049 bash[14150]: cluster 2024-02-22T22:23:35.418590+0000 mgr.smithi049.pzczis (mgr.14180) 79 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:36.811 INFO:teuthology.orchestra.run.smithi049.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-22T22:23:36.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:36 smithi049 bash[14150]: audit 2024-02-22T22:23:36.110647+0000 mon.smithi049 (mon.0) 259 : audit [DBG] from='client.? 172.21.15.49:0/2872787119' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:23:37.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:36 smithi195 bash[18068]: audit 2024-02-22T22:23:36.110647+0000 mon.smithi049 (mon.0) 259 : audit [DBG] from='client.? 172.21.15.49:0/2872787119' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:23:37.812 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-22T22:23:38.019 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:37 smithi049 bash[14150]: cluster 2024-02-22T22:23:37.419047+0000 mgr.smithi049.pzczis (mgr.14180) 80 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:38.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:37 smithi195 bash[18068]: cluster 2024-02-22T22:23:37.419047+0000 mgr.smithi049.pzczis (mgr.14180) 80 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:40.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:40 smithi195 bash[18068]: cluster 2024-02-22T22:23:39.419484+0000 mgr.smithi049.pzczis (mgr.14180) 81 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:40.839 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:40 smithi049 bash[14150]: cluster 2024-02-22T22:23:39.419484+0000 mgr.smithi049.pzczis (mgr.14180) 81 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:41.328 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:23:41.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:41 smithi195 bash[18068]: audit 2024-02-22T22:23:41.326643+0000 mon.smithi049 (mon.0) 260 : audit [DBG] from='client.? 172.21.15.49:0/2144276978' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:23:41.770 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:41 smithi049 bash[14150]: audit 2024-02-22T22:23:41.326643+0000 mon.smithi049 (mon.0) 260 : audit [DBG] from='client.? 172.21.15.49:0/2144276978' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:23:42.763 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:42 smithi049 bash[14150]: cluster 2024-02-22T22:23:41.419898+0000 mgr.smithi049.pzczis (mgr.14180) 82 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:42.764 INFO:teuthology.orchestra.run.smithi049.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-22T22:23:42.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:42 smithi195 bash[18068]: cluster 2024-02-22T22:23:41.419898+0000 mgr.smithi049.pzczis (mgr.14180) 82 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:43.765 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-22T22:23:44.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:44 smithi195 bash[18068]: cluster 2024-02-22T22:23:43.420215+0000 mgr.smithi049.pzczis (mgr.14180) 83 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:44.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:44 smithi195 bash[18068]: audit 2024-02-22T22:23:43.640937+0000 mon.smithi195 (mon.1) 2 : audit [INF] from='client.? 172.21.15.195:0/146082335' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "41e842e7-8891-410a-b83d-8d6428128203"}]: dispatch 2024-02-22T22:23:44.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:44 smithi195 bash[18068]: audit 2024-02-22T22:23:43.643088+0000 mon.smithi049 (mon.0) 261 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "41e842e7-8891-410a-b83d-8d6428128203"}]: dispatch 2024-02-22T22:23:44.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:44 smithi195 bash[18068]: audit 2024-02-22T22:23:43.649132+0000 mon.smithi049 (mon.0) 262 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "41e842e7-8891-410a-b83d-8d6428128203"}]': finished 2024-02-22T22:23:44.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:44 smithi195 bash[18068]: cluster 2024-02-22T22:23:43.649212+0000 mon.smithi049 (mon.0) 263 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-02-22T22:23:44.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:44 smithi195 bash[18068]: audit 2024-02-22T22:23:43.649479+0000 mon.smithi049 (mon.0) 264 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-22T22:23:44.910 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:44 smithi049 bash[14150]: cluster 2024-02-22T22:23:43.420215+0000 mgr.smithi049.pzczis (mgr.14180) 83 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:44.910 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:44 smithi049 bash[14150]: audit 2024-02-22T22:23:43.640937+0000 mon.smithi195 (mon.1) 2 : audit [INF] from='client.? 172.21.15.195:0/146082335' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "41e842e7-8891-410a-b83d-8d6428128203"}]: dispatch 2024-02-22T22:23:44.911 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:44 smithi049 bash[14150]: audit 2024-02-22T22:23:43.643088+0000 mon.smithi049 (mon.0) 261 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "41e842e7-8891-410a-b83d-8d6428128203"}]: dispatch 2024-02-22T22:23:44.911 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:44 smithi049 bash[14150]: audit 2024-02-22T22:23:43.649132+0000 mon.smithi049 (mon.0) 262 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "41e842e7-8891-410a-b83d-8d6428128203"}]': finished 2024-02-22T22:23:44.911 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:44 smithi049 bash[14150]: cluster 2024-02-22T22:23:43.649212+0000 mon.smithi049 (mon.0) 263 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-02-22T22:23:44.911 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:44 smithi049 bash[14150]: audit 2024-02-22T22:23:43.649479+0000 mon.smithi049 (mon.0) 264 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-22T22:23:45.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:45 smithi049 bash[14150]: audit 2024-02-22T22:23:44.705505+0000 mon.smithi049 (mon.0) 265 : audit [INF] from='client.? 172.21.15.49:0/3394238549' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "4d964953-7129-4981-981a-db08d1a71033"}]: dispatch 2024-02-22T22:23:45.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:45 smithi049 bash[14150]: audit 2024-02-22T22:23:44.710561+0000 mon.smithi049 (mon.0) 266 : audit [INF] from='client.? 172.21.15.49:0/3394238549' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "4d964953-7129-4981-981a-db08d1a71033"}]': finished 2024-02-22T22:23:45.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:45 smithi049 bash[14150]: cluster 2024-02-22T22:23:44.710612+0000 mon.smithi049 (mon.0) 267 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-02-22T22:23:45.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:45 smithi049 bash[14150]: audit 2024-02-22T22:23:44.710882+0000 mon.smithi049 (mon.0) 268 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-22T22:23:45.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:45 smithi049 bash[14150]: audit 2024-02-22T22:23:44.711525+0000 mon.smithi049 (mon.0) 269 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:23:45.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:45 smithi049 bash[14150]: audit 2024-02-22T22:23:45.213469+0000 mon.smithi195 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.195:0/3256894641' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-22T22:23:45.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:45 smithi195 bash[18068]: audit 2024-02-22T22:23:44.705505+0000 mon.smithi049 (mon.0) 265 : audit [INF] from='client.? 172.21.15.49:0/3394238549' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "4d964953-7129-4981-981a-db08d1a71033"}]: dispatch 2024-02-22T22:23:45.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:45 smithi195 bash[18068]: audit 2024-02-22T22:23:44.710561+0000 mon.smithi049 (mon.0) 266 : audit [INF] from='client.? 172.21.15.49:0/3394238549' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "4d964953-7129-4981-981a-db08d1a71033"}]': finished 2024-02-22T22:23:45.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:45 smithi195 bash[18068]: cluster 2024-02-22T22:23:44.710612+0000 mon.smithi049 (mon.0) 267 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-02-22T22:23:45.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:45 smithi195 bash[18068]: audit 2024-02-22T22:23:44.710882+0000 mon.smithi049 (mon.0) 268 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-22T22:23:45.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:45 smithi195 bash[18068]: audit 2024-02-22T22:23:44.711525+0000 mon.smithi049 (mon.0) 269 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:23:45.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:45 smithi195 bash[18068]: audit 2024-02-22T22:23:45.213469+0000 mon.smithi195 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.195:0/3256894641' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-22T22:23:46.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:46 smithi195 bash[18068]: cluster 2024-02-22T22:23:45.420720+0000 mgr.smithi049.pzczis (mgr.14180) 84 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:46.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:46 smithi049 bash[14150]: cluster 2024-02-22T22:23:45.420720+0000 mgr.smithi049.pzczis (mgr.14180) 84 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:47.351 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:23:47.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:47 smithi049 bash[14150]: audit 2024-02-22T22:23:47.180847+0000 mon.smithi049 (mon.0) 270 : audit [DBG] from='client.? 172.21.15.49:0/3783201543' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-22T22:23:47.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:47 smithi049 bash[14150]: audit 2024-02-22T22:23:47.349142+0000 mon.smithi049 (mon.0) 271 : audit [DBG] from='client.? 172.21.15.49:0/1273022271' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:23:47.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:47 smithi195 bash[18068]: audit 2024-02-22T22:23:47.180847+0000 mon.smithi049 (mon.0) 270 : audit [DBG] from='client.? 172.21.15.49:0/3783201543' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-22T22:23:47.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:47 smithi195 bash[18068]: audit 2024-02-22T22:23:47.349142+0000 mon.smithi049 (mon.0) 271 : audit [DBG] from='client.? 172.21.15.49:0/1273022271' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:23:48.085 INFO:teuthology.orchestra.run.smithi049.stdout:{"epoch":7,"num_osds":2,"num_up_osds":0,"osd_up_since":0,"num_in_osds":2,"osd_in_since":1708640624,"num_remapped_pgs":0} 2024-02-22T22:23:48.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:48 smithi195 bash[18068]: cluster 2024-02-22T22:23:47.421083+0000 mgr.smithi049.pzczis (mgr.14180) 85 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:48.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:48 smithi195 bash[18068]: audit 2024-02-22T22:23:48.018281+0000 mon.smithi195 (mon.1) 4 : audit [INF] from='client.? 172.21.15.195:0/514876333' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "39a8018e-d1c7-4144-8350-34a533c60036"}]: dispatch 2024-02-22T22:23:48.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:48 smithi195 bash[18068]: audit 2024-02-22T22:23:48.019912+0000 mon.smithi049 (mon.0) 272 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "39a8018e-d1c7-4144-8350-34a533c60036"}]: dispatch 2024-02-22T22:23:48.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:48 smithi195 bash[18068]: audit 2024-02-22T22:23:48.026869+0000 mon.smithi049 (mon.0) 273 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "39a8018e-d1c7-4144-8350-34a533c60036"}]': finished 2024-02-22T22:23:48.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:48 smithi195 bash[18068]: cluster 2024-02-22T22:23:48.026998+0000 mon.smithi049 (mon.0) 274 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-02-22T22:23:48.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:48 smithi195 bash[18068]: audit 2024-02-22T22:23:48.027162+0000 mon.smithi049 (mon.0) 275 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-22T22:23:48.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:48 smithi195 bash[18068]: audit 2024-02-22T22:23:48.027523+0000 mon.smithi049 (mon.0) 276 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:23:48.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:48 smithi195 bash[18068]: audit 2024-02-22T22:23:48.027721+0000 mon.smithi049 (mon.0) 277 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:23:48.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:48 smithi049 bash[14150]: cluster 2024-02-22T22:23:47.421083+0000 mgr.smithi049.pzczis (mgr.14180) 85 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:48.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:48 smithi049 bash[14150]: audit 2024-02-22T22:23:48.018281+0000 mon.smithi195 (mon.1) 4 : audit [INF] from='client.? 172.21.15.195:0/514876333' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "39a8018e-d1c7-4144-8350-34a533c60036"}]: dispatch 2024-02-22T22:23:48.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:48 smithi049 bash[14150]: audit 2024-02-22T22:23:48.019912+0000 mon.smithi049 (mon.0) 272 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "39a8018e-d1c7-4144-8350-34a533c60036"}]: dispatch 2024-02-22T22:23:48.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:48 smithi049 bash[14150]: audit 2024-02-22T22:23:48.026869+0000 mon.smithi049 (mon.0) 273 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "39a8018e-d1c7-4144-8350-34a533c60036"}]': finished 2024-02-22T22:23:48.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:48 smithi049 bash[14150]: cluster 2024-02-22T22:23:48.026998+0000 mon.smithi049 (mon.0) 274 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-02-22T22:23:48.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:48 smithi049 bash[14150]: audit 2024-02-22T22:23:48.027162+0000 mon.smithi049 (mon.0) 275 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-22T22:23:48.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:48 smithi049 bash[14150]: audit 2024-02-22T22:23:48.027523+0000 mon.smithi049 (mon.0) 276 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:23:48.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:48 smithi049 bash[14150]: audit 2024-02-22T22:23:48.027721+0000 mon.smithi049 (mon.0) 277 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:23:49.086 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-22T22:23:50.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:50 smithi049 bash[14150]: cluster 2024-02-22T22:23:49.421511+0000 mgr.smithi049.pzczis (mgr.14180) 86 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:50.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:50 smithi049 bash[14150]: audit 2024-02-22T22:23:49.547425+0000 mon.smithi195 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.195:0/513746317' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-22T22:23:50.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:50 smithi049 bash[14150]: audit 2024-02-22T22:23:49.947105+0000 mon.smithi049 (mon.0) 278 : audit [INF] from='client.? 172.21.15.49:0/1615649051' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "189ce9d1-71a2-4554-94f5-7c9cc21aefb2"}]: dispatch 2024-02-22T22:23:50.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:50 smithi049 bash[14150]: audit 2024-02-22T22:23:49.953497+0000 mon.smithi049 (mon.0) 279 : audit [INF] from='client.? 172.21.15.49:0/1615649051' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "189ce9d1-71a2-4554-94f5-7c9cc21aefb2"}]': finished 2024-02-22T22:23:50.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:50 smithi049 bash[14150]: cluster 2024-02-22T22:23:49.953609+0000 mon.smithi049 (mon.0) 280 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-02-22T22:23:50.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:50 smithi049 bash[14150]: audit 2024-02-22T22:23:49.953820+0000 mon.smithi049 (mon.0) 281 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-22T22:23:50.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:50 smithi049 bash[14150]: audit 2024-02-22T22:23:49.954454+0000 mon.smithi049 (mon.0) 282 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:23:50.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:50 smithi049 bash[14150]: audit 2024-02-22T22:23:49.954851+0000 mon.smithi049 (mon.0) 283 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:23:50.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:50 smithi049 bash[14150]: audit 2024-02-22T22:23:49.955199+0000 mon.smithi049 (mon.0) 284 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:23:50.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:50 smithi195 bash[18068]: cluster 2024-02-22T22:23:49.421511+0000 mgr.smithi049.pzczis (mgr.14180) 86 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:50.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:50 smithi195 bash[18068]: audit 2024-02-22T22:23:49.547425+0000 mon.smithi195 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.195:0/513746317' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-22T22:23:50.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:50 smithi195 bash[18068]: audit 2024-02-22T22:23:49.947105+0000 mon.smithi049 (mon.0) 278 : audit [INF] from='client.? 172.21.15.49:0/1615649051' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "189ce9d1-71a2-4554-94f5-7c9cc21aefb2"}]: dispatch 2024-02-22T22:23:50.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:50 smithi195 bash[18068]: audit 2024-02-22T22:23:49.953497+0000 mon.smithi049 (mon.0) 279 : audit [INF] from='client.? 172.21.15.49:0/1615649051' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "189ce9d1-71a2-4554-94f5-7c9cc21aefb2"}]': finished 2024-02-22T22:23:50.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:50 smithi195 bash[18068]: cluster 2024-02-22T22:23:49.953609+0000 mon.smithi049 (mon.0) 280 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-02-22T22:23:50.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:50 smithi195 bash[18068]: audit 2024-02-22T22:23:49.953820+0000 mon.smithi049 (mon.0) 281 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-22T22:23:50.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:50 smithi195 bash[18068]: audit 2024-02-22T22:23:49.954454+0000 mon.smithi049 (mon.0) 282 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:23:50.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:50 smithi195 bash[18068]: audit 2024-02-22T22:23:49.954851+0000 mon.smithi049 (mon.0) 283 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:23:50.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:50 smithi195 bash[18068]: audit 2024-02-22T22:23:49.955199+0000 mon.smithi049 (mon.0) 284 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:23:52.518 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:23:52.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:52 smithi195 bash[18068]: cluster 2024-02-22T22:23:51.421944+0000 mgr.smithi049.pzczis (mgr.14180) 87 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:52.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:52 smithi195 bash[18068]: audit 2024-02-22T22:23:52.333884+0000 mon.smithi195 (mon.1) 6 : audit [INF] from='client.? 172.21.15.195:0/2154208549' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c91ef420-a472-4645-9275-a309041de606"}]: dispatch 2024-02-22T22:23:52.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:52 smithi195 bash[18068]: audit 2024-02-22T22:23:52.335656+0000 mon.smithi049 (mon.0) 285 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c91ef420-a472-4645-9275-a309041de606"}]: dispatch 2024-02-22T22:23:52.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:52 smithi195 bash[18068]: audit 2024-02-22T22:23:52.342441+0000 mon.smithi049 (mon.0) 286 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c91ef420-a472-4645-9275-a309041de606"}]': finished 2024-02-22T22:23:52.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:52 smithi195 bash[18068]: cluster 2024-02-22T22:23:52.342548+0000 mon.smithi049 (mon.0) 287 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-02-22T22:23:52.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:52 smithi195 bash[18068]: audit 2024-02-22T22:23:52.342716+0000 mon.smithi049 (mon.0) 288 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-22T22:23:52.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:52 smithi195 bash[18068]: audit 2024-02-22T22:23:52.343157+0000 mon.smithi049 (mon.0) 289 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:23:52.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:52 smithi195 bash[18068]: audit 2024-02-22T22:23:52.343408+0000 mon.smithi049 (mon.0) 290 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:23:52.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:52 smithi195 bash[18068]: audit 2024-02-22T22:23:52.343662+0000 mon.smithi049 (mon.0) 291 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:23:52.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:52 smithi195 bash[18068]: audit 2024-02-22T22:23:52.343938+0000 mon.smithi049 (mon.0) 292 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:23:52.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:52 smithi195 bash[18068]: audit 2024-02-22T22:23:52.349808+0000 mon.smithi049 (mon.0) 293 : audit [DBG] from='client.? 172.21.15.49:0/2066105780' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-22T22:23:52.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:52 smithi049 bash[14150]: cluster 2024-02-22T22:23:51.421944+0000 mgr.smithi049.pzczis (mgr.14180) 87 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:52.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:52 smithi049 bash[14150]: audit 2024-02-22T22:23:52.333884+0000 mon.smithi195 (mon.1) 6 : audit [INF] from='client.? 172.21.15.195:0/2154208549' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c91ef420-a472-4645-9275-a309041de606"}]: dispatch 2024-02-22T22:23:52.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:52 smithi049 bash[14150]: audit 2024-02-22T22:23:52.335656+0000 mon.smithi049 (mon.0) 285 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c91ef420-a472-4645-9275-a309041de606"}]: dispatch 2024-02-22T22:23:52.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:52 smithi049 bash[14150]: audit 2024-02-22T22:23:52.342441+0000 mon.smithi049 (mon.0) 286 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c91ef420-a472-4645-9275-a309041de606"}]': finished 2024-02-22T22:23:52.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:52 smithi049 bash[14150]: cluster 2024-02-22T22:23:52.342548+0000 mon.smithi049 (mon.0) 287 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-02-22T22:23:52.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:52 smithi049 bash[14150]: audit 2024-02-22T22:23:52.342716+0000 mon.smithi049 (mon.0) 288 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-22T22:23:52.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:52 smithi049 bash[14150]: audit 2024-02-22T22:23:52.343157+0000 mon.smithi049 (mon.0) 289 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:23:52.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:52 smithi049 bash[14150]: audit 2024-02-22T22:23:52.343408+0000 mon.smithi049 (mon.0) 290 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:23:52.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:52 smithi049 bash[14150]: audit 2024-02-22T22:23:52.343662+0000 mon.smithi049 (mon.0) 291 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:23:52.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:52 smithi049 bash[14150]: audit 2024-02-22T22:23:52.343938+0000 mon.smithi049 (mon.0) 292 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:23:52.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:52 smithi049 bash[14150]: audit 2024-02-22T22:23:52.349808+0000 mon.smithi049 (mon.0) 293 : audit [DBG] from='client.? 172.21.15.49:0/2066105780' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-22T22:23:53.230 INFO:teuthology.orchestra.run.smithi049.stdout:{"epoch":10,"num_osds":5,"num_up_osds":0,"osd_up_since":0,"num_in_osds":5,"osd_in_since":1708640632,"num_remapped_pgs":0} 2024-02-22T22:23:53.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:53 smithi195 bash[18068]: audit 2024-02-22T22:23:52.517147+0000 mon.smithi049 (mon.0) 294 : audit [DBG] from='client.? 172.21.15.49:0/1034557721' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:23:53.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:53 smithi049 bash[14150]: audit 2024-02-22T22:23:52.517147+0000 mon.smithi049 (mon.0) 294 : audit [DBG] from='client.? 172.21.15.49:0/1034557721' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:23:54.231 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-22T22:23:54.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:54 smithi049 bash[14150]: cluster 2024-02-22T22:23:53.422364+0000 mgr.smithi049.pzczis (mgr.14180) 88 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:54.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:54 smithi049 bash[14150]: audit 2024-02-22T22:23:53.937306+0000 mon.smithi195 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.195:0/1468531645' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-22T22:23:54.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:54 smithi195 bash[18068]: cluster 2024-02-22T22:23:53.422364+0000 mgr.smithi049.pzczis (mgr.14180) 88 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:54.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:54 smithi195 bash[18068]: audit 2024-02-22T22:23:53.937306+0000 mon.smithi195 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.195:0/1468531645' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-22T22:23:55.596 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:55 smithi049 bash[14150]: audit 2024-02-22T22:23:55.125065+0000 mon.smithi049 (mon.0) 295 : audit [INF] from='client.? 172.21.15.49:0/1301231532' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f2543b02-b061-4234-8f1c-1d42ffcd64f6"}]: dispatch 2024-02-22T22:23:55.596 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:55 smithi049 bash[14150]: audit 2024-02-22T22:23:55.130644+0000 mon.smithi049 (mon.0) 296 : audit [INF] from='client.? 172.21.15.49:0/1301231532' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f2543b02-b061-4234-8f1c-1d42ffcd64f6"}]': finished 2024-02-22T22:23:55.596 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:55 smithi049 bash[14150]: cluster 2024-02-22T22:23:55.130723+0000 mon.smithi049 (mon.0) 297 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-02-22T22:23:55.596 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:55 smithi049 bash[14150]: audit 2024-02-22T22:23:55.130844+0000 mon.smithi049 (mon.0) 298 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-22T22:23:55.596 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:55 smithi049 bash[14150]: audit 2024-02-22T22:23:55.131233+0000 mon.smithi049 (mon.0) 299 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:23:55.596 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:55 smithi049 bash[14150]: audit 2024-02-22T22:23:55.131419+0000 mon.smithi049 (mon.0) 300 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:23:55.597 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:55 smithi049 bash[14150]: audit 2024-02-22T22:23:55.131696+0000 mon.smithi049 (mon.0) 301 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:23:55.597 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:55 smithi049 bash[14150]: audit 2024-02-22T22:23:55.131956+0000 mon.smithi049 (mon.0) 302 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:23:55.597 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:55 smithi049 bash[14150]: audit 2024-02-22T22:23:55.132179+0000 mon.smithi049 (mon.0) 303 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:23:55.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:55 smithi195 bash[18068]: audit 2024-02-22T22:23:55.125065+0000 mon.smithi049 (mon.0) 295 : audit [INF] from='client.? 172.21.15.49:0/1301231532' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f2543b02-b061-4234-8f1c-1d42ffcd64f6"}]: dispatch 2024-02-22T22:23:55.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:55 smithi195 bash[18068]: audit 2024-02-22T22:23:55.130644+0000 mon.smithi049 (mon.0) 296 : audit [INF] from='client.? 172.21.15.49:0/1301231532' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f2543b02-b061-4234-8f1c-1d42ffcd64f6"}]': finished 2024-02-22T22:23:55.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:55 smithi195 bash[18068]: cluster 2024-02-22T22:23:55.130723+0000 mon.smithi049 (mon.0) 297 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-02-22T22:23:55.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:55 smithi195 bash[18068]: audit 2024-02-22T22:23:55.130844+0000 mon.smithi049 (mon.0) 298 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-22T22:23:55.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:55 smithi195 bash[18068]: audit 2024-02-22T22:23:55.131233+0000 mon.smithi049 (mon.0) 299 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:23:55.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:55 smithi195 bash[18068]: audit 2024-02-22T22:23:55.131419+0000 mon.smithi049 (mon.0) 300 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:23:55.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:55 smithi195 bash[18068]: audit 2024-02-22T22:23:55.131696+0000 mon.smithi049 (mon.0) 301 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:23:55.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:55 smithi195 bash[18068]: audit 2024-02-22T22:23:55.131956+0000 mon.smithi049 (mon.0) 302 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:23:55.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:55 smithi195 bash[18068]: audit 2024-02-22T22:23:55.132179+0000 mon.smithi049 (mon.0) 303 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:23:56.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:56 smithi049 bash[14150]: cluster 2024-02-22T22:23:55.422792+0000 mgr.smithi049.pzczis (mgr.14180) 89 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:56.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:56 smithi195 bash[18068]: cluster 2024-02-22T22:23:55.422792+0000 mgr.smithi049.pzczis (mgr.14180) 89 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:57.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:57 smithi049 bash[14150]: audit 2024-02-22T22:23:56.728849+0000 mon.smithi195 (mon.1) 8 : audit [INF] from='client.? 172.21.15.195:0/1866927016' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "4d14f351-5019-428e-86cf-8ef4219946eb"}]: dispatch 2024-02-22T22:23:57.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:57 smithi049 bash[14150]: audit 2024-02-22T22:23:56.730914+0000 mon.smithi049 (mon.0) 304 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "4d14f351-5019-428e-86cf-8ef4219946eb"}]: dispatch 2024-02-22T22:23:57.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:57 smithi049 bash[14150]: audit 2024-02-22T22:23:56.737238+0000 mon.smithi049 (mon.0) 305 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "4d14f351-5019-428e-86cf-8ef4219946eb"}]': finished 2024-02-22T22:23:57.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:57 smithi049 bash[14150]: cluster 2024-02-22T22:23:56.737340+0000 mon.smithi049 (mon.0) 306 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-02-22T22:23:57.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:57 smithi049 bash[14150]: audit 2024-02-22T22:23:56.737551+0000 mon.smithi049 (mon.0) 307 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-22T22:23:57.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:57 smithi049 bash[14150]: audit 2024-02-22T22:23:56.738056+0000 mon.smithi049 (mon.0) 308 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:23:57.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:57 smithi049 bash[14150]: audit 2024-02-22T22:23:56.738382+0000 mon.smithi049 (mon.0) 309 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:23:57.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:57 smithi049 bash[14150]: audit 2024-02-22T22:23:56.738762+0000 mon.smithi049 (mon.0) 310 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:23:57.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:57 smithi049 bash[14150]: audit 2024-02-22T22:23:56.739069+0000 mon.smithi049 (mon.0) 311 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:23:57.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:57 smithi049 bash[14150]: audit 2024-02-22T22:23:56.739348+0000 mon.smithi049 (mon.0) 312 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:23:57.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:57 smithi049 bash[14150]: audit 2024-02-22T22:23:56.739612+0000 mon.smithi049 (mon.0) 313 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:23:57.793 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:23:57.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:57 smithi195 bash[18068]: audit 2024-02-22T22:23:56.728849+0000 mon.smithi195 (mon.1) 8 : audit [INF] from='client.? 172.21.15.195:0/1866927016' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "4d14f351-5019-428e-86cf-8ef4219946eb"}]: dispatch 2024-02-22T22:23:57.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:57 smithi195 bash[18068]: audit 2024-02-22T22:23:56.730914+0000 mon.smithi049 (mon.0) 304 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "4d14f351-5019-428e-86cf-8ef4219946eb"}]: dispatch 2024-02-22T22:23:57.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:57 smithi195 bash[18068]: audit 2024-02-22T22:23:56.737238+0000 mon.smithi049 (mon.0) 305 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "4d14f351-5019-428e-86cf-8ef4219946eb"}]': finished 2024-02-22T22:23:57.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:57 smithi195 bash[18068]: cluster 2024-02-22T22:23:56.737340+0000 mon.smithi049 (mon.0) 306 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-02-22T22:23:57.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:57 smithi195 bash[18068]: audit 2024-02-22T22:23:56.737551+0000 mon.smithi049 (mon.0) 307 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-22T22:23:57.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:57 smithi195 bash[18068]: audit 2024-02-22T22:23:56.738056+0000 mon.smithi049 (mon.0) 308 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:23:57.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:57 smithi195 bash[18068]: audit 2024-02-22T22:23:56.738382+0000 mon.smithi049 (mon.0) 309 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:23:57.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:57 smithi195 bash[18068]: audit 2024-02-22T22:23:56.738762+0000 mon.smithi049 (mon.0) 310 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:23:57.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:57 smithi195 bash[18068]: audit 2024-02-22T22:23:56.739069+0000 mon.smithi049 (mon.0) 311 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:23:57.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:57 smithi195 bash[18068]: audit 2024-02-22T22:23:56.739348+0000 mon.smithi049 (mon.0) 312 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:23:57.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:57 smithi195 bash[18068]: audit 2024-02-22T22:23:56.739612+0000 mon.smithi049 (mon.0) 313 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:23:58.554 INFO:teuthology.orchestra.run.smithi049.stdout:{"epoch":12,"num_osds":7,"num_up_osds":0,"osd_up_since":0,"num_in_osds":7,"osd_in_since":1708640636,"num_remapped_pgs":0} 2024-02-22T22:23:58.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:58 smithi195 bash[18068]: cluster 2024-02-22T22:23:57.423124+0000 mgr.smithi049.pzczis (mgr.14180) 90 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:58.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:58 smithi195 bash[18068]: audit 2024-02-22T22:23:57.605500+0000 mon.smithi049 (mon.0) 314 : audit [DBG] from='client.? 172.21.15.49:0/3635004617' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-22T22:23:58.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:58 smithi195 bash[18068]: audit 2024-02-22T22:23:57.791723+0000 mon.smithi049 (mon.0) 315 : audit [DBG] from='client.? 172.21.15.49:0/1163486868' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:23:58.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:23:58 smithi195 bash[18068]: audit 2024-02-22T22:23:58.378511+0000 mon.smithi195 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.195:0/669913461' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-22T22:23:58.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:58 smithi049 bash[14150]: cluster 2024-02-22T22:23:57.423124+0000 mgr.smithi049.pzczis (mgr.14180) 90 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:23:58.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:58 smithi049 bash[14150]: audit 2024-02-22T22:23:57.605500+0000 mon.smithi049 (mon.0) 314 : audit [DBG] from='client.? 172.21.15.49:0/3635004617' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-22T22:23:58.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:58 smithi049 bash[14150]: audit 2024-02-22T22:23:57.791723+0000 mon.smithi049 (mon.0) 315 : audit [DBG] from='client.? 172.21.15.49:0/1163486868' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:23:58.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:23:58 smithi049 bash[14150]: audit 2024-02-22T22:23:58.378511+0000 mon.smithi195 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.195:0/669913461' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-22T22:23:59.555 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-22T22:24:00.765 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:00 smithi049 bash[14150]: cluster 2024-02-22T22:23:59.423577+0000 mgr.smithi049.pzczis (mgr.14180) 91 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:00.765 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:00 smithi049 bash[14150]: audit 2024-02-22T22:24:00.422622+0000 mon.smithi049 (mon.0) 316 : audit [INF] from='client.? 172.21.15.49:0/1656099800' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "fede6af6-732c-42ef-b782-19d0e203d793"}]: dispatch 2024-02-22T22:24:00.765 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:00 smithi049 bash[14150]: audit 2024-02-22T22:24:00.427947+0000 mon.smithi049 (mon.0) 317 : audit [INF] from='client.? 172.21.15.49:0/1656099800' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "fede6af6-732c-42ef-b782-19d0e203d793"}]': finished 2024-02-22T22:24:00.765 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:00 smithi049 bash[14150]: cluster 2024-02-22T22:24:00.427998+0000 mon.smithi049 (mon.0) 318 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-02-22T22:24:00.765 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:00 smithi049 bash[14150]: audit 2024-02-22T22:24:00.428142+0000 mon.smithi049 (mon.0) 319 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-22T22:24:00.765 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:00 smithi049 bash[14150]: audit 2024-02-22T22:24:00.428653+0000 mon.smithi049 (mon.0) 320 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:24:00.766 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:00 smithi049 bash[14150]: audit 2024-02-22T22:24:00.428989+0000 mon.smithi049 (mon.0) 321 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:24:00.766 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:00 smithi049 bash[14150]: audit 2024-02-22T22:24:00.429338+0000 mon.smithi049 (mon.0) 322 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:00.766 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:00 smithi049 bash[14150]: audit 2024-02-22T22:24:00.429677+0000 mon.smithi049 (mon.0) 323 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:00.766 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:00 smithi049 bash[14150]: audit 2024-02-22T22:24:00.430036+0000 mon.smithi049 (mon.0) 324 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:00.766 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:00 smithi049 bash[14150]: audit 2024-02-22T22:24:00.430385+0000 mon.smithi049 (mon.0) 325 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:00.766 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:00 smithi049 bash[14150]: audit 2024-02-22T22:24:00.430849+0000 mon.smithi049 (mon.0) 326 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:00.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:00 smithi195 bash[18068]: cluster 2024-02-22T22:23:59.423577+0000 mgr.smithi049.pzczis (mgr.14180) 91 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:00.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:00 smithi195 bash[18068]: audit 2024-02-22T22:24:00.422622+0000 mon.smithi049 (mon.0) 316 : audit [INF] from='client.? 172.21.15.49:0/1656099800' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "fede6af6-732c-42ef-b782-19d0e203d793"}]: dispatch 2024-02-22T22:24:00.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:00 smithi195 bash[18068]: audit 2024-02-22T22:24:00.427947+0000 mon.smithi049 (mon.0) 317 : audit [INF] from='client.? 172.21.15.49:0/1656099800' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "fede6af6-732c-42ef-b782-19d0e203d793"}]': finished 2024-02-22T22:24:00.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:00 smithi195 bash[18068]: cluster 2024-02-22T22:24:00.427998+0000 mon.smithi049 (mon.0) 318 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-02-22T22:24:00.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:00 smithi195 bash[18068]: audit 2024-02-22T22:24:00.428142+0000 mon.smithi049 (mon.0) 319 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-22T22:24:00.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:00 smithi195 bash[18068]: audit 2024-02-22T22:24:00.428653+0000 mon.smithi049 (mon.0) 320 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:24:00.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:00 smithi195 bash[18068]: audit 2024-02-22T22:24:00.428989+0000 mon.smithi049 (mon.0) 321 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:24:00.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:00 smithi195 bash[18068]: audit 2024-02-22T22:24:00.429338+0000 mon.smithi049 (mon.0) 322 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:00.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:00 smithi195 bash[18068]: audit 2024-02-22T22:24:00.429677+0000 mon.smithi049 (mon.0) 323 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:00.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:00 smithi195 bash[18068]: audit 2024-02-22T22:24:00.430036+0000 mon.smithi049 (mon.0) 324 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:00.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:00 smithi195 bash[18068]: audit 2024-02-22T22:24:00.430385+0000 mon.smithi049 (mon.0) 325 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:00.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:00 smithi195 bash[18068]: audit 2024-02-22T22:24:00.430849+0000 mon.smithi049 (mon.0) 326 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:01.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:01 smithi049 bash[14150]: cluster 2024-02-22T22:24:01.423973+0000 mgr.smithi049.pzczis (mgr.14180) 92 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:02.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:01 smithi195 bash[18068]: cluster 2024-02-22T22:24:01.423973+0000 mgr.smithi049.pzczis (mgr.14180) 92 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:02.925 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:24:03.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:02 smithi195 bash[18068]: audit 2024-02-22T22:24:02.896554+0000 mon.smithi049 (mon.0) 327 : audit [DBG] from='client.? 172.21.15.49:0/180585111' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-22T22:24:03.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:02 smithi195 bash[18068]: audit 2024-02-22T22:24:02.923376+0000 mon.smithi049 (mon.0) 328 : audit [DBG] from='client.? 172.21.15.49:0/3869515423' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:24:03.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:02 smithi049 bash[14150]: audit 2024-02-22T22:24:02.896554+0000 mon.smithi049 (mon.0) 327 : audit [DBG] from='client.? 172.21.15.49:0/180585111' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-22T22:24:03.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:02 smithi049 bash[14150]: audit 2024-02-22T22:24:02.923376+0000 mon.smithi049 (mon.0) 328 : audit [DBG] from='client.? 172.21.15.49:0/3869515423' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:24:03.628 INFO:teuthology.orchestra.run.smithi049.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1708640640,"num_remapped_pgs":0} 2024-02-22T22:24:04.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:03 smithi195 bash[18068]: cluster 2024-02-22T22:24:03.424344+0000 mgr.smithi049.pzczis (mgr.14180) 93 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:04.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:03 smithi049 bash[14150]: cluster 2024-02-22T22:24:03.424344+0000 mgr.smithi049.pzczis (mgr.14180) 93 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:04.629 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-22T22:24:06.571 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:06 smithi049 bash[14150]: cluster 2024-02-22T22:24:05.424775+0000 mgr.smithi049.pzczis (mgr.14180) 94 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:06.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:06 smithi195 bash[18068]: cluster 2024-02-22T22:24:05.424775+0000 mgr.smithi049.pzczis (mgr.14180) 94 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:07.976 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:24:08.628 INFO:teuthology.orchestra.run.smithi049.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1708640640,"num_remapped_pgs":0} 2024-02-22T22:24:08.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:08 smithi195 bash[18068]: cluster 2024-02-22T22:24:07.425131+0000 mgr.smithi049.pzczis (mgr.14180) 95 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:08.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:08 smithi195 bash[18068]: audit 2024-02-22T22:24:07.972721+0000 mon.smithi195 (mon.1) 10 : audit [DBG] from='client.? 172.21.15.49:0/2383528798' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:24:08.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:08 smithi049 bash[14150]: cluster 2024-02-22T22:24:07.425131+0000 mgr.smithi049.pzczis (mgr.14180) 95 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:08.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:08 smithi049 bash[14150]: audit 2024-02-22T22:24:07.972721+0000 mon.smithi195 (mon.1) 10 : audit [DBG] from='client.? 172.21.15.49:0/2383528798' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:24:09.629 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-22T22:24:10.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:10 smithi195 bash[18068]: cluster 2024-02-22T22:24:09.425573+0000 mgr.smithi049.pzczis (mgr.14180) 96 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:10.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:10 smithi195 bash[18068]: audit 2024-02-22T22:24:10.072381+0000 mon.smithi049 (mon.0) 329 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-02-22T22:24:10.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:10 smithi195 bash[18068]: audit 2024-02-22T22:24:10.073744+0000 mon.smithi049 (mon.0) 330 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:24:10.834 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:10 smithi049 bash[14150]: cluster 2024-02-22T22:24:09.425573+0000 mgr.smithi049.pzczis (mgr.14180) 96 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:10.834 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:10 smithi049 bash[14150]: audit 2024-02-22T22:24:10.072381+0000 mon.smithi049 (mon.0) 329 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-02-22T22:24:10.834 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:10 smithi049 bash[14150]: audit 2024-02-22T22:24:10.073744+0000 mon.smithi049 (mon.0) 330 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:24:11.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:11 smithi195 bash[18068]: cephadm 2024-02-22T22:24:10.074851+0000 mgr.smithi049.pzczis (mgr.14180) 97 : cephadm [INF] Deploying daemon osd.0 on smithi195 2024-02-22T22:24:11.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:11 smithi049 bash[14150]: cephadm 2024-02-22T22:24:10.074851+0000 mgr.smithi049.pzczis (mgr.14180) 97 : cephadm [INF] Deploying daemon osd.0 on smithi195 2024-02-22T22:24:12.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:12 smithi195 bash[18068]: cluster 2024-02-22T22:24:11.426055+0000 mgr.smithi049.pzczis (mgr.14180) 98 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:12.842 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:12 smithi049 bash[14150]: cluster 2024-02-22T22:24:11.426055+0000 mgr.smithi049.pzczis (mgr.14180) 98 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:13.378 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:24:13.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:13 smithi195 bash[18068]: audit 2024-02-22T22:24:13.376363+0000 mon.smithi049 (mon.0) 331 : audit [DBG] from='client.? 172.21.15.49:0/1683281693' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:24:13.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:13 smithi049 bash[14150]: audit 2024-02-22T22:24:13.376363+0000 mon.smithi049 (mon.0) 331 : audit [DBG] from='client.? 172.21.15.49:0/1683281693' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:24:14.575 INFO:teuthology.orchestra.run.smithi049.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1708640640,"num_remapped_pgs":0} 2024-02-22T22:24:14.775 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:14 smithi049 bash[14150]: cluster 2024-02-22T22:24:13.426465+0000 mgr.smithi049.pzczis (mgr.14180) 99 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:14.775 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:14 smithi049 bash[14150]: audit 2024-02-22T22:24:14.164900+0000 mon.smithi049 (mon.0) 332 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:24:14.776 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:14 smithi049 bash[14150]: audit 2024-02-22T22:24:14.165866+0000 mon.smithi049 (mon.0) 333 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-02-22T22:24:14.776 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:14 smithi049 bash[14150]: audit 2024-02-22T22:24:14.166753+0000 mon.smithi049 (mon.0) 334 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:24:15.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:14 smithi195 bash[18068]: cluster 2024-02-22T22:24:13.426465+0000 mgr.smithi049.pzczis (mgr.14180) 99 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:15.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:14 smithi195 bash[18068]: audit 2024-02-22T22:24:14.164900+0000 mon.smithi049 (mon.0) 332 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:24:15.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:14 smithi195 bash[18068]: audit 2024-02-22T22:24:14.165866+0000 mon.smithi049 (mon.0) 333 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-02-22T22:24:15.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:14 smithi195 bash[18068]: audit 2024-02-22T22:24:14.166753+0000 mon.smithi049 (mon.0) 334 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:24:15.576 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-22T22:24:15.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:15 smithi049 bash[14150]: cephadm 2024-02-22T22:24:14.167590+0000 mgr.smithi049.pzczis (mgr.14180) 100 : cephadm [INF] Deploying daemon osd.2 on smithi195 2024-02-22T22:24:15.767 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:15 smithi195 bash[18068]: cephadm 2024-02-22T22:24:14.167590+0000 mgr.smithi049.pzczis (mgr.14180) 100 : cephadm [INF] Deploying daemon osd.2 on smithi195 2024-02-22T22:24:16.783 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:16 smithi049 bash[14150]: cluster 2024-02-22T22:24:15.426858+0000 mgr.smithi049.pzczis (mgr.14180) 101 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:16.783 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:16 smithi049 bash[14150]: audit 2024-02-22T22:24:16.298597+0000 mon.smithi049 (mon.0) 335 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-02-22T22:24:16.783 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:16 smithi049 bash[14150]: audit 2024-02-22T22:24:16.299953+0000 mon.smithi049 (mon.0) 336 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:24:16.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:16 smithi195 bash[18068]: cluster 2024-02-22T22:24:15.426858+0000 mgr.smithi049.pzczis (mgr.14180) 101 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:16.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:16 smithi195 bash[18068]: audit 2024-02-22T22:24:16.298597+0000 mon.smithi049 (mon.0) 335 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-02-22T22:24:16.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:16 smithi195 bash[18068]: audit 2024-02-22T22:24:16.299953+0000 mon.smithi049 (mon.0) 336 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:24:17.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:17 smithi195 bash[18068]: cephadm 2024-02-22T22:24:16.301188+0000 mgr.smithi049.pzczis (mgr.14180) 102 : cephadm [INF] Deploying daemon osd.1 on smithi049 2024-02-22T22:24:17.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:17 smithi049 bash[14150]: cephadm 2024-02-22T22:24:16.301188+0000 mgr.smithi049.pzczis (mgr.14180) 102 : cephadm [INF] Deploying daemon osd.1 on smithi049 2024-02-22T22:24:18.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:18 smithi195 bash[18068]: cluster 2024-02-22T22:24:17.427257+0000 mgr.smithi049.pzczis (mgr.14180) 103 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:18.838 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:18 smithi049 bash[14150]: cluster 2024-02-22T22:24:17.427257+0000 mgr.smithi049.pzczis (mgr.14180) 103 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:19.864 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:24:20.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:20 smithi049 bash[14150]: cluster 2024-02-22T22:24:19.427656+0000 mgr.smithi049.pzczis (mgr.14180) 104 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:20.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:20 smithi049 bash[14150]: audit 2024-02-22T22:24:19.603437+0000 mon.smithi049 (mon.0) 337 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:24:20.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:20 smithi049 bash[14150]: audit 2024-02-22T22:24:19.604474+0000 mon.smithi049 (mon.0) 338 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-02-22T22:24:20.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:20 smithi049 bash[14150]: audit 2024-02-22T22:24:19.605360+0000 mon.smithi049 (mon.0) 339 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:24:20.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:20 smithi049 bash[14150]: audit 2024-02-22T22:24:19.863155+0000 mon.smithi049 (mon.0) 340 : audit [DBG] from='client.? 172.21.15.49:0/1190958446' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:24:20.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:20 smithi195 bash[18068]: cluster 2024-02-22T22:24:19.427656+0000 mgr.smithi049.pzczis (mgr.14180) 104 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:20.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:20 smithi195 bash[18068]: audit 2024-02-22T22:24:19.603437+0000 mon.smithi049 (mon.0) 337 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:24:20.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:20 smithi195 bash[18068]: audit 2024-02-22T22:24:19.604474+0000 mon.smithi049 (mon.0) 338 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-02-22T22:24:20.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:20 smithi195 bash[18068]: audit 2024-02-22T22:24:19.605360+0000 mon.smithi049 (mon.0) 339 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:24:20.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:20 smithi195 bash[18068]: audit 2024-02-22T22:24:19.863155+0000 mon.smithi049 (mon.0) 340 : audit [DBG] from='client.? 172.21.15.49:0/1190958446' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:24:20.966 INFO:teuthology.orchestra.run.smithi049.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1708640640,"num_remapped_pgs":0} 2024-02-22T22:24:21.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:21 smithi049 bash[14150]: cephadm 2024-02-22T22:24:19.606121+0000 mgr.smithi049.pzczis (mgr.14180) 105 : cephadm [INF] Deploying daemon osd.4 on smithi195 2024-02-22T22:24:21.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:21 smithi195 bash[18068]: cephadm 2024-02-22T22:24:19.606121+0000 mgr.smithi049.pzczis (mgr.14180) 105 : cephadm [INF] Deploying daemon osd.4 on smithi195 2024-02-22T22:24:21.968 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-22T22:24:22.580 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:22 smithi049 bash[14150]: cluster 2024-02-22T22:24:21.428031+0000 mgr.smithi049.pzczis (mgr.14180) 106 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:22.580 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:22 smithi049 bash[14150]: audit 2024-02-22T22:24:22.058530+0000 mon.smithi195 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.195:6800/406287926,v1:172.21.15.195:6801/406287926]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-02-22T22:24:22.580 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:22 smithi049 bash[14150]: audit 2024-02-22T22:24:22.060799+0000 mon.smithi049 (mon.0) 341 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-02-22T22:24:22.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:22 smithi195 bash[18068]: cluster 2024-02-22T22:24:21.428031+0000 mgr.smithi049.pzczis (mgr.14180) 106 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:22.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:22 smithi195 bash[18068]: audit 2024-02-22T22:24:22.058530+0000 mon.smithi195 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.195:6800/406287926,v1:172.21.15.195:6801/406287926]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-02-22T22:24:22.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:22 smithi195 bash[18068]: audit 2024-02-22T22:24:22.060799+0000 mon.smithi049 (mon.0) 341 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-02-22T22:24:23.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:23 smithi195 bash[18068]: audit 2024-02-22T22:24:22.550340+0000 mon.smithi195 (mon.1) 12 : audit [INF] from='osd.0 [v2:172.21.15.195:6800/406287926,v1:172.21.15.195:6801/406287926]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-02-22T22:24:23.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:23 smithi195 bash[18068]: audit 2024-02-22T22:24:22.550831+0000 mon.smithi049 (mon.0) 342 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-02-22T22:24:23.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:23 smithi195 bash[18068]: cluster 2024-02-22T22:24:22.550920+0000 mon.smithi049 (mon.0) 343 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-02-22T22:24:23.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:23 smithi195 bash[18068]: audit 2024-02-22T22:24:22.551037+0000 mon.smithi049 (mon.0) 344 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-22T22:24:23.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:23 smithi195 bash[18068]: audit 2024-02-22T22:24:22.551379+0000 mon.smithi049 (mon.0) 345 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:24:23.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:23 smithi195 bash[18068]: audit 2024-02-22T22:24:22.551533+0000 mon.smithi049 (mon.0) 346 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:24:23.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:23 smithi195 bash[18068]: audit 2024-02-22T22:24:22.551736+0000 mon.smithi049 (mon.0) 347 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:23.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:23 smithi195 bash[18068]: audit 2024-02-22T22:24:22.551908+0000 mon.smithi049 (mon.0) 348 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:23.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:23 smithi195 bash[18068]: audit 2024-02-22T22:24:22.552087+0000 mon.smithi049 (mon.0) 349 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:23.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:23 smithi195 bash[18068]: audit 2024-02-22T22:24:22.552312+0000 mon.smithi049 (mon.0) 350 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:23.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:23 smithi195 bash[18068]: audit 2024-02-22T22:24:22.552566+0000 mon.smithi049 (mon.0) 351 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-02-22T22:24:23.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:23 smithi195 bash[18068]: audit 2024-02-22T22:24:22.552807+0000 mon.smithi049 (mon.0) 352 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:23.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:23 smithi195 bash[18068]: audit 2024-02-22T22:24:22.616204+0000 mon.smithi049 (mon.0) 353 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:24:23.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:23 smithi195 bash[18068]: audit 2024-02-22T22:24:22.617593+0000 mon.smithi049 (mon.0) 354 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-02-22T22:24:23.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:23 smithi195 bash[18068]: audit 2024-02-22T22:24:22.618629+0000 mon.smithi049 (mon.0) 355 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:24:23.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:23 smithi195 bash[18068]: cephadm 2024-02-22T22:24:22.619532+0000 mgr.smithi049.pzczis (mgr.14180) 107 : cephadm [INF] Deploying daemon osd.3 on smithi049 2024-02-22T22:24:23.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:23 smithi195 bash[18068]: cluster 2024-02-22T22:24:23.428418+0000 mgr.smithi049.pzczis (mgr.14180) 108 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:23.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:23 smithi049 bash[14150]: audit 2024-02-22T22:24:22.550340+0000 mon.smithi195 (mon.1) 12 : audit [INF] from='osd.0 [v2:172.21.15.195:6800/406287926,v1:172.21.15.195:6801/406287926]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-02-22T22:24:23.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:23 smithi049 bash[14150]: audit 2024-02-22T22:24:22.550831+0000 mon.smithi049 (mon.0) 342 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-02-22T22:24:23.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:23 smithi049 bash[14150]: cluster 2024-02-22T22:24:22.550920+0000 mon.smithi049 (mon.0) 343 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-02-22T22:24:23.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:23 smithi049 bash[14150]: audit 2024-02-22T22:24:22.551037+0000 mon.smithi049 (mon.0) 344 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-22T22:24:23.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:23 smithi049 bash[14150]: audit 2024-02-22T22:24:22.551379+0000 mon.smithi049 (mon.0) 345 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:24:23.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:23 smithi049 bash[14150]: audit 2024-02-22T22:24:22.551533+0000 mon.smithi049 (mon.0) 346 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:24:23.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:23 smithi049 bash[14150]: audit 2024-02-22T22:24:22.551736+0000 mon.smithi049 (mon.0) 347 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:23.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:23 smithi049 bash[14150]: audit 2024-02-22T22:24:22.551908+0000 mon.smithi049 (mon.0) 348 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:23.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:23 smithi049 bash[14150]: audit 2024-02-22T22:24:22.552087+0000 mon.smithi049 (mon.0) 349 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:23.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:23 smithi049 bash[14150]: audit 2024-02-22T22:24:22.552312+0000 mon.smithi049 (mon.0) 350 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:23.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:23 smithi049 bash[14150]: audit 2024-02-22T22:24:22.552566+0000 mon.smithi049 (mon.0) 351 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-02-22T22:24:23.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:23 smithi049 bash[14150]: audit 2024-02-22T22:24:22.552807+0000 mon.smithi049 (mon.0) 352 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:23.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:23 smithi049 bash[14150]: audit 2024-02-22T22:24:22.616204+0000 mon.smithi049 (mon.0) 353 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:24:23.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:23 smithi049 bash[14150]: audit 2024-02-22T22:24:22.617593+0000 mon.smithi049 (mon.0) 354 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-02-22T22:24:23.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:23 smithi049 bash[14150]: audit 2024-02-22T22:24:22.618629+0000 mon.smithi049 (mon.0) 355 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:24:23.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:23 smithi049 bash[14150]: cephadm 2024-02-22T22:24:22.619532+0000 mgr.smithi049.pzczis (mgr.14180) 107 : cephadm [INF] Deploying daemon osd.3 on smithi049 2024-02-22T22:24:23.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:23 smithi049 bash[14150]: cluster 2024-02-22T22:24:23.428418+0000 mgr.smithi049.pzczis (mgr.14180) 108 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:24.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:24 smithi049 bash[14150]: audit 2024-02-22T22:24:23.560522+0000 mon.smithi049 (mon.0) 356 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-02-22T22:24:24.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:24 smithi049 bash[14150]: cluster 2024-02-22T22:24:23.560633+0000 mon.smithi049 (mon.0) 357 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-02-22T22:24:24.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:24 smithi049 bash[14150]: audit 2024-02-22T22:24:23.560796+0000 mon.smithi049 (mon.0) 358 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-22T22:24:24.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:24 smithi049 bash[14150]: audit 2024-02-22T22:24:23.561157+0000 mon.smithi049 (mon.0) 359 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:24:24.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:24 smithi049 bash[14150]: audit 2024-02-22T22:24:23.561372+0000 mon.smithi049 (mon.0) 360 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:24:24.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:24 smithi049 bash[14150]: audit 2024-02-22T22:24:23.561586+0000 mon.smithi049 (mon.0) 361 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:24.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:24 smithi049 bash[14150]: audit 2024-02-22T22:24:23.561791+0000 mon.smithi049 (mon.0) 362 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:24.696 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:24 smithi049 bash[14150]: audit 2024-02-22T22:24:23.562000+0000 mon.smithi049 (mon.0) 363 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:24.696 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:24 smithi049 bash[14150]: audit 2024-02-22T22:24:23.562205+0000 mon.smithi049 (mon.0) 364 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:24.696 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:24 smithi049 bash[14150]: audit 2024-02-22T22:24:23.562413+0000 mon.smithi049 (mon.0) 365 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:24.696 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:24 smithi049 bash[14150]: audit 2024-02-22T22:24:23.565938+0000 mon.smithi049 (mon.0) 366 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-22T22:24:24.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:24 smithi195 bash[18068]: audit 2024-02-22T22:24:23.560522+0000 mon.smithi049 (mon.0) 356 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-02-22T22:24:24.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:24 smithi195 bash[18068]: cluster 2024-02-22T22:24:23.560633+0000 mon.smithi049 (mon.0) 357 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-02-22T22:24:24.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:24 smithi195 bash[18068]: audit 2024-02-22T22:24:23.560796+0000 mon.smithi049 (mon.0) 358 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-22T22:24:24.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:24 smithi195 bash[18068]: audit 2024-02-22T22:24:23.561157+0000 mon.smithi049 (mon.0) 359 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:24:24.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:24 smithi195 bash[18068]: audit 2024-02-22T22:24:23.561372+0000 mon.smithi049 (mon.0) 360 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:24:24.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:24 smithi195 bash[18068]: audit 2024-02-22T22:24:23.561586+0000 mon.smithi049 (mon.0) 361 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:24.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:24 smithi195 bash[18068]: audit 2024-02-22T22:24:23.561791+0000 mon.smithi049 (mon.0) 362 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:24.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:24 smithi195 bash[18068]: audit 2024-02-22T22:24:23.562000+0000 mon.smithi049 (mon.0) 363 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:24.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:24 smithi195 bash[18068]: audit 2024-02-22T22:24:23.562205+0000 mon.smithi049 (mon.0) 364 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:24.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:24 smithi195 bash[18068]: audit 2024-02-22T22:24:23.562413+0000 mon.smithi049 (mon.0) 365 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:24.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:24 smithi195 bash[18068]: audit 2024-02-22T22:24:23.565938+0000 mon.smithi049 (mon.0) 366 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-22T22:24:25.681 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:25 smithi049 bash[14150]: cluster 2024-02-22T22:24:23.032301+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-22T22:24:25.681 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:25 smithi049 bash[14150]: cluster 2024-02-22T22:24:23.032361+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-22T22:24:25.682 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:25 smithi049 bash[14150]: cluster 2024-02-22T22:24:24.564531+0000 mon.smithi049 (mon.0) 367 : cluster [INF] osd.0 [v2:172.21.15.195:6800/406287926,v1:172.21.15.195:6801/406287926] boot 2024-02-22T22:24:25.682 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:25 smithi049 bash[14150]: cluster 2024-02-22T22:24:24.564624+0000 mon.smithi049 (mon.0) 368 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-02-22T22:24:25.682 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:25 smithi049 bash[14150]: audit 2024-02-22T22:24:24.565354+0000 mon.smithi049 (mon.0) 369 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-22T22:24:25.682 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:25 smithi049 bash[14150]: audit 2024-02-22T22:24:24.566049+0000 mon.smithi049 (mon.0) 370 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:24:25.682 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:25 smithi049 bash[14150]: audit 2024-02-22T22:24:24.566383+0000 mon.smithi049 (mon.0) 371 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:24:25.682 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:25 smithi049 bash[14150]: audit 2024-02-22T22:24:24.566570+0000 mon.smithi049 (mon.0) 372 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:25.682 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:25 smithi049 bash[14150]: audit 2024-02-22T22:24:24.571410+0000 mon.smithi049 (mon.0) 373 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:25.682 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:25 smithi049 bash[14150]: audit 2024-02-22T22:24:24.571783+0000 mon.smithi049 (mon.0) 374 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:25.682 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:25 smithi049 bash[14150]: audit 2024-02-22T22:24:24.571969+0000 mon.smithi049 (mon.0) 375 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:25.682 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:25 smithi049 bash[14150]: audit 2024-02-22T22:24:24.572208+0000 mon.smithi049 (mon.0) 376 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:25.682 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:25 smithi049 bash[14150]: audit 2024-02-22T22:24:25.241804+0000 mon.smithi049 (mon.0) 377 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:24:25.682 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:25 smithi049 bash[14150]: audit 2024-02-22T22:24:25.242821+0000 mon.smithi049 (mon.0) 378 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-02-22T22:24:25.682 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:25 smithi049 bash[14150]: audit 2024-02-22T22:24:25.243691+0000 mon.smithi049 (mon.0) 379 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:24:25.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:25 smithi049 bash[14150]: cephadm 2024-02-22T22:24:25.244425+0000 mgr.smithi049.pzczis (mgr.14180) 109 : cephadm [INF] Deploying daemon osd.6 on smithi195 2024-02-22T22:24:25.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:25 smithi049 bash[14150]: cluster 2024-02-22T22:24:25.428830+0000 mgr.smithi049.pzczis (mgr.14180) 110 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:26.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:25 smithi195 bash[18068]: cluster 2024-02-22T22:24:23.032301+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-22T22:24:26.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:25 smithi195 bash[18068]: cluster 2024-02-22T22:24:23.032361+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-22T22:24:26.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:25 smithi195 bash[18068]: cluster 2024-02-22T22:24:24.564531+0000 mon.smithi049 (mon.0) 367 : cluster [INF] osd.0 [v2:172.21.15.195:6800/406287926,v1:172.21.15.195:6801/406287926] boot 2024-02-22T22:24:26.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:25 smithi195 bash[18068]: cluster 2024-02-22T22:24:24.564624+0000 mon.smithi049 (mon.0) 368 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-02-22T22:24:26.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:25 smithi195 bash[18068]: audit 2024-02-22T22:24:24.565354+0000 mon.smithi049 (mon.0) 369 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-22T22:24:26.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:25 smithi195 bash[18068]: audit 2024-02-22T22:24:24.566049+0000 mon.smithi049 (mon.0) 370 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:24:26.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:25 smithi195 bash[18068]: audit 2024-02-22T22:24:24.566383+0000 mon.smithi049 (mon.0) 371 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:24:26.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:25 smithi195 bash[18068]: audit 2024-02-22T22:24:24.566570+0000 mon.smithi049 (mon.0) 372 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:26.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:25 smithi195 bash[18068]: audit 2024-02-22T22:24:24.571410+0000 mon.smithi049 (mon.0) 373 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:26.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:25 smithi195 bash[18068]: audit 2024-02-22T22:24:24.571783+0000 mon.smithi049 (mon.0) 374 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:26.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:25 smithi195 bash[18068]: audit 2024-02-22T22:24:24.571969+0000 mon.smithi049 (mon.0) 375 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:26.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:25 smithi195 bash[18068]: audit 2024-02-22T22:24:24.572208+0000 mon.smithi049 (mon.0) 376 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:26.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:25 smithi195 bash[18068]: audit 2024-02-22T22:24:25.241804+0000 mon.smithi049 (mon.0) 377 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:24:26.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:25 smithi195 bash[18068]: audit 2024-02-22T22:24:25.242821+0000 mon.smithi049 (mon.0) 378 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-02-22T22:24:26.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:25 smithi195 bash[18068]: audit 2024-02-22T22:24:25.243691+0000 mon.smithi049 (mon.0) 379 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:24:26.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:25 smithi195 bash[18068]: cephadm 2024-02-22T22:24:25.244425+0000 mgr.smithi049.pzczis (mgr.14180) 109 : cephadm [INF] Deploying daemon osd.6 on smithi195 2024-02-22T22:24:26.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:25 smithi195 bash[18068]: cluster 2024-02-22T22:24:25.428830+0000 mgr.smithi049.pzczis (mgr.14180) 110 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-22T22:24:26.955 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:26 smithi049 bash[14150]: cluster 2024-02-22T22:24:25.635821+0000 mon.smithi049 (mon.0) 380 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-02-22T22:24:26.955 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:26 smithi049 bash[14150]: audit 2024-02-22T22:24:25.635986+0000 mon.smithi049 (mon.0) 381 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:24:26.955 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:26 smithi049 bash[14150]: audit 2024-02-22T22:24:25.636301+0000 mon.smithi049 (mon.0) 382 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:24:26.955 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:26 smithi049 bash[14150]: audit 2024-02-22T22:24:25.636538+0000 mon.smithi049 (mon.0) 383 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:26.955 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:26 smithi049 bash[14150]: audit 2024-02-22T22:24:25.636773+0000 mon.smithi049 (mon.0) 384 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:26.955 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:26 smithi049 bash[14150]: audit 2024-02-22T22:24:25.637010+0000 mon.smithi049 (mon.0) 385 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:26.955 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:26 smithi049 bash[14150]: audit 2024-02-22T22:24:25.637237+0000 mon.smithi049 (mon.0) 386 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:26.955 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:26 smithi049 bash[14150]: audit 2024-02-22T22:24:25.637466+0000 mon.smithi049 (mon.0) 387 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:26.968 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:26 smithi195 bash[18068]: cluster 2024-02-22T22:24:25.635821+0000 mon.smithi049 (mon.0) 380 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-02-22T22:24:26.969 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:26 smithi195 bash[18068]: audit 2024-02-22T22:24:25.635986+0000 mon.smithi049 (mon.0) 381 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:24:26.969 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:26 smithi195 bash[18068]: audit 2024-02-22T22:24:25.636301+0000 mon.smithi049 (mon.0) 382 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:24:26.969 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:26 smithi195 bash[18068]: audit 2024-02-22T22:24:25.636538+0000 mon.smithi049 (mon.0) 383 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:26.969 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:26 smithi195 bash[18068]: audit 2024-02-22T22:24:25.636773+0000 mon.smithi049 (mon.0) 384 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:26.969 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:26 smithi195 bash[18068]: audit 2024-02-22T22:24:25.637010+0000 mon.smithi049 (mon.0) 385 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:26.969 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:26 smithi195 bash[18068]: audit 2024-02-22T22:24:25.637237+0000 mon.smithi049 (mon.0) 386 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:26.969 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:26 smithi195 bash[18068]: audit 2024-02-22T22:24:25.637466+0000 mon.smithi049 (mon.0) 387 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:27.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:27 smithi049 bash[14150]: audit 2024-02-22T22:24:27.264077+0000 mon.smithi195 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.195:6808/3835375383,v1:172.21.15.195:6809/3835375383]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-02-22T22:24:27.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:27 smithi049 bash[14150]: audit 2024-02-22T22:24:27.266283+0000 mon.smithi049 (mon.0) 388 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-02-22T22:24:27.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:27 smithi049 bash[14150]: cluster 2024-02-22T22:24:27.429156+0000 mgr.smithi049.pzczis (mgr.14180) 111 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-22T22:24:28.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:27 smithi195 bash[18068]: audit 2024-02-22T22:24:27.264077+0000 mon.smithi195 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.195:6808/3835375383,v1:172.21.15.195:6809/3835375383]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-02-22T22:24:28.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:27 smithi195 bash[18068]: audit 2024-02-22T22:24:27.266283+0000 mon.smithi049 (mon.0) 388 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-02-22T22:24:28.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:27 smithi195 bash[18068]: cluster 2024-02-22T22:24:27.429156+0000 mgr.smithi049.pzczis (mgr.14180) 111 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-22T22:24:28.070 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:24:28.691 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:28 smithi195 bash[18068]: audit 2024-02-22T22:24:27.648299+0000 mon.smithi195 (mon.1) 14 : audit [INF] from='osd.2 [v2:172.21.15.195:6808/3835375383,v1:172.21.15.195:6809/3835375383]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-02-22T22:24:28.691 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:28 smithi195 bash[18068]: audit 2024-02-22T22:24:27.648814+0000 mon.smithi049 (mon.0) 389 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-02-22T22:24:28.691 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:28 smithi195 bash[18068]: cluster 2024-02-22T22:24:27.648960+0000 mon.smithi049 (mon.0) 390 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-02-22T22:24:28.691 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:28 smithi195 bash[18068]: audit 2024-02-22T22:24:27.649124+0000 mon.smithi049 (mon.0) 391 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:24:28.691 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:28 smithi195 bash[18068]: audit 2024-02-22T22:24:27.649667+0000 mon.smithi049 (mon.0) 392 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:24:28.692 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:28 smithi195 bash[18068]: audit 2024-02-22T22:24:27.649980+0000 mon.smithi049 (mon.0) 393 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:28.692 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:28 smithi195 bash[18068]: audit 2024-02-22T22:24:27.650255+0000 mon.smithi049 (mon.0) 394 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:28.692 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:28 smithi195 bash[18068]: audit 2024-02-22T22:24:27.650619+0000 mon.smithi049 (mon.0) 395 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:28.692 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:28 smithi195 bash[18068]: audit 2024-02-22T22:24:27.650971+0000 mon.smithi049 (mon.0) 396 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-02-22T22:24:28.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:28 smithi049 bash[14150]: audit 2024-02-22T22:24:27.648299+0000 mon.smithi195 (mon.1) 14 : audit [INF] from='osd.2 [v2:172.21.15.195:6808/3835375383,v1:172.21.15.195:6809/3835375383]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-02-22T22:24:28.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:28 smithi049 bash[14150]: audit 2024-02-22T22:24:27.648814+0000 mon.smithi049 (mon.0) 389 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-02-22T22:24:28.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:28 smithi049 bash[14150]: cluster 2024-02-22T22:24:27.648960+0000 mon.smithi049 (mon.0) 390 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-02-22T22:24:28.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:28 smithi049 bash[14150]: audit 2024-02-22T22:24:27.649124+0000 mon.smithi049 (mon.0) 391 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:24:28.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:28 smithi049 bash[14150]: audit 2024-02-22T22:24:27.649667+0000 mon.smithi049 (mon.0) 392 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:24:28.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:28 smithi049 bash[14150]: audit 2024-02-22T22:24:27.649980+0000 mon.smithi049 (mon.0) 393 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:28.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:28 smithi049 bash[14150]: audit 2024-02-22T22:24:27.650255+0000 mon.smithi049 (mon.0) 394 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:28.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:28 smithi049 bash[14150]: audit 2024-02-22T22:24:27.650619+0000 mon.smithi049 (mon.0) 395 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:28.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:28 smithi049 bash[14150]: audit 2024-02-22T22:24:27.650971+0000 mon.smithi049 (mon.0) 396 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-02-22T22:24:28.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:28 smithi049 bash[14150]: audit 2024-02-22T22:24:27.651265+0000 mon.smithi049 (mon.0) 397 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:28.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:28 smithi049 bash[14150]: audit 2024-02-22T22:24:27.651435+0000 mon.smithi049 (mon.0) 398 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:28.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:28 smithi049 bash[14150]: audit 2024-02-22T22:24:28.068701+0000 mon.smithi049 (mon.0) 399 : audit [DBG] from='client.? 172.21.15.49:0/3815388285' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:24:29.036 INFO:teuthology.orchestra.run.smithi049.stdout:{"epoch":18,"num_osds":8,"num_up_osds":1,"osd_up_since":1708640664,"num_in_osds":8,"osd_in_since":1708640640,"num_remapped_pgs":0} 2024-02-22T22:24:29.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:28 smithi195 bash[18068]: audit 2024-02-22T22:24:27.651265+0000 mon.smithi049 (mon.0) 397 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:29.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:28 smithi195 bash[18068]: audit 2024-02-22T22:24:27.651435+0000 mon.smithi049 (mon.0) 398 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:29.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:28 smithi195 bash[18068]: audit 2024-02-22T22:24:28.068701+0000 mon.smithi049 (mon.0) 399 : audit [DBG] from='client.? 172.21.15.49:0/3815388285' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:24:29.789 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:29 smithi049 bash[14150]: audit 2024-02-22T22:24:28.649210+0000 mon.smithi049 (mon.0) 400 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-02-22T22:24:29.789 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:29 smithi049 bash[14150]: cluster 2024-02-22T22:24:28.649272+0000 mon.smithi049 (mon.0) 401 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-02-22T22:24:29.789 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:29 smithi049 bash[14150]: audit 2024-02-22T22:24:28.649617+0000 mon.smithi049 (mon.0) 402 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:24:29.789 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:29 smithi049 bash[14150]: audit 2024-02-22T22:24:28.649893+0000 mon.smithi049 (mon.0) 403 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:24:29.789 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:29 smithi049 bash[14150]: audit 2024-02-22T22:24:28.650040+0000 mon.smithi049 (mon.0) 404 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:29.789 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:29 smithi049 bash[14150]: audit 2024-02-22T22:24:28.650229+0000 mon.smithi049 (mon.0) 405 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:29.789 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:29 smithi049 bash[14150]: audit 2024-02-22T22:24:28.650464+0000 mon.smithi049 (mon.0) 406 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:29.790 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:29 smithi049 bash[14150]: audit 2024-02-22T22:24:28.650626+0000 mon.smithi049 (mon.0) 407 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:29.790 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:29 smithi049 bash[14150]: audit 2024-02-22T22:24:28.650778+0000 mon.smithi049 (mon.0) 408 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:29.790 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:29 smithi049 bash[14150]: audit 2024-02-22T22:24:28.654609+0000 mon.smithi049 (mon.0) 409 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:24:29.790 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:29 smithi049 bash[14150]: cluster 2024-02-22T22:24:29.429619+0000 mgr.smithi049.pzczis (mgr.14180) 112 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-22T22:24:29.952 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:29 smithi195 bash[18068]: audit 2024-02-22T22:24:28.649210+0000 mon.smithi049 (mon.0) 400 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-02-22T22:24:29.953 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:29 smithi195 bash[18068]: cluster 2024-02-22T22:24:28.649272+0000 mon.smithi049 (mon.0) 401 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-02-22T22:24:29.953 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:29 smithi195 bash[18068]: audit 2024-02-22T22:24:28.649617+0000 mon.smithi049 (mon.0) 402 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:24:29.953 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:29 smithi195 bash[18068]: audit 2024-02-22T22:24:28.649893+0000 mon.smithi049 (mon.0) 403 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:24:29.953 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:29 smithi195 bash[18068]: audit 2024-02-22T22:24:28.650040+0000 mon.smithi049 (mon.0) 404 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:29.953 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:29 smithi195 bash[18068]: audit 2024-02-22T22:24:28.650229+0000 mon.smithi049 (mon.0) 405 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:29.953 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:29 smithi195 bash[18068]: audit 2024-02-22T22:24:28.650464+0000 mon.smithi049 (mon.0) 406 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:29.953 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:29 smithi195 bash[18068]: audit 2024-02-22T22:24:28.650626+0000 mon.smithi049 (mon.0) 407 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:29.953 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:29 smithi195 bash[18068]: audit 2024-02-22T22:24:28.650778+0000 mon.smithi049 (mon.0) 408 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:29.953 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:29 smithi195 bash[18068]: audit 2024-02-22T22:24:28.654609+0000 mon.smithi049 (mon.0) 409 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:24:29.953 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:29 smithi195 bash[18068]: cluster 2024-02-22T22:24:29.429619+0000 mgr.smithi049.pzczis (mgr.14180) 112 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-22T22:24:30.038 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-22T22:24:30.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:30 smithi049 bash[14150]: cluster 2024-02-22T22:24:28.294797+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-22T22:24:30.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:30 smithi049 bash[14150]: cluster 2024-02-22T22:24:28.294888+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-22T22:24:30.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:30 smithi049 bash[14150]: audit 2024-02-22T22:24:29.657037+0000 mon.smithi049 (mon.0) 410 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:24:30.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:30 smithi049 bash[14150]: cluster 2024-02-22T22:24:29.662118+0000 mon.smithi049 (mon.0) 411 : cluster [INF] osd.2 [v2:172.21.15.195:6808/3835375383,v1:172.21.15.195:6809/3835375383] boot 2024-02-22T22:24:30.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:30 smithi049 bash[14150]: cluster 2024-02-22T22:24:29.662166+0000 mon.smithi049 (mon.0) 412 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2024-02-22T22:24:30.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:30 smithi049 bash[14150]: audit 2024-02-22T22:24:29.662329+0000 mon.smithi049 (mon.0) 413 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:24:30.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:30 smithi049 bash[14150]: audit 2024-02-22T22:24:29.663244+0000 mon.smithi049 (mon.0) 414 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:24:30.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:30 smithi049 bash[14150]: audit 2024-02-22T22:24:29.663616+0000 mon.smithi049 (mon.0) 415 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:30.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:30 smithi049 bash[14150]: audit 2024-02-22T22:24:29.663978+0000 mon.smithi049 (mon.0) 416 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:30.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:30 smithi049 bash[14150]: audit 2024-02-22T22:24:29.664236+0000 mon.smithi049 (mon.0) 417 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:30.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:30 smithi049 bash[14150]: audit 2024-02-22T22:24:29.664466+0000 mon.smithi049 (mon.0) 418 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:30.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:30 smithi049 bash[14150]: audit 2024-02-22T22:24:29.664735+0000 mon.smithi049 (mon.0) 419 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:30.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:30 smithi049 bash[14150]: audit 2024-02-22T22:24:30.080638+0000 mon.smithi049 (mon.0) 420 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:24:30.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:30 smithi049 bash[14150]: audit 2024-02-22T22:24:30.081968+0000 mon.smithi049 (mon.0) 421 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-02-22T22:24:30.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:30 smithi049 bash[14150]: audit 2024-02-22T22:24:30.083078+0000 mon.smithi049 (mon.0) 422 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:24:30.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:30 smithi049 bash[14150]: cephadm 2024-02-22T22:24:30.083872+0000 mgr.smithi049.pzczis (mgr.14180) 113 : cephadm [INF] Deploying daemon osd.5 on smithi049 2024-02-22T22:24:31.032 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:30 smithi195 bash[18068]: cluster 2024-02-22T22:24:28.294797+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-22T22:24:31.032 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:30 smithi195 bash[18068]: cluster 2024-02-22T22:24:28.294888+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-22T22:24:31.032 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:30 smithi195 bash[18068]: audit 2024-02-22T22:24:29.657037+0000 mon.smithi049 (mon.0) 410 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:24:31.032 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:30 smithi195 bash[18068]: cluster 2024-02-22T22:24:29.662118+0000 mon.smithi049 (mon.0) 411 : cluster [INF] osd.2 [v2:172.21.15.195:6808/3835375383,v1:172.21.15.195:6809/3835375383] boot 2024-02-22T22:24:31.032 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:30 smithi195 bash[18068]: cluster 2024-02-22T22:24:29.662166+0000 mon.smithi049 (mon.0) 412 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2024-02-22T22:24:31.032 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:30 smithi195 bash[18068]: audit 2024-02-22T22:24:29.662329+0000 mon.smithi049 (mon.0) 413 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:24:31.032 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:30 smithi195 bash[18068]: audit 2024-02-22T22:24:29.663244+0000 mon.smithi049 (mon.0) 414 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-22T22:24:31.032 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:30 smithi195 bash[18068]: audit 2024-02-22T22:24:29.663616+0000 mon.smithi049 (mon.0) 415 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:31.032 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:30 smithi195 bash[18068]: audit 2024-02-22T22:24:29.663978+0000 mon.smithi049 (mon.0) 416 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:31.032 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:30 smithi195 bash[18068]: audit 2024-02-22T22:24:29.664236+0000 mon.smithi049 (mon.0) 417 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:31.033 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:30 smithi195 bash[18068]: audit 2024-02-22T22:24:29.664466+0000 mon.smithi049 (mon.0) 418 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:31.033 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:30 smithi195 bash[18068]: audit 2024-02-22T22:24:29.664735+0000 mon.smithi049 (mon.0) 419 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:31.033 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:30 smithi195 bash[18068]: audit 2024-02-22T22:24:30.080638+0000 mon.smithi049 (mon.0) 420 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:24:31.033 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:30 smithi195 bash[18068]: audit 2024-02-22T22:24:30.081968+0000 mon.smithi049 (mon.0) 421 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-02-22T22:24:31.033 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:30 smithi195 bash[18068]: audit 2024-02-22T22:24:30.083078+0000 mon.smithi049 (mon.0) 422 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:24:31.033 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:30 smithi195 bash[18068]: cephadm 2024-02-22T22:24:30.083872+0000 mgr.smithi049.pzczis (mgr.14180) 113 : cephadm [INF] Deploying daemon osd.5 on smithi049 2024-02-22T22:24:32.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:32 smithi195 bash[18068]: audit 2024-02-22T22:24:31.065444+0000 mon.smithi049 (mon.0) 423 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:24:32.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:32 smithi195 bash[18068]: cluster 2024-02-22T22:24:31.082649+0000 mon.smithi049 (mon.0) 424 : cluster [DBG] osdmap e21: 8 total, 2 up, 8 in 2024-02-22T22:24:32.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:32 smithi195 bash[18068]: audit 2024-02-22T22:24:31.082856+0000 mon.smithi049 (mon.0) 425 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:24:32.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:32 smithi195 bash[18068]: audit 2024-02-22T22:24:31.083140+0000 mon.smithi049 (mon.0) 426 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:32.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:32 smithi195 bash[18068]: audit 2024-02-22T22:24:31.083337+0000 mon.smithi049 (mon.0) 427 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:32.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:32 smithi195 bash[18068]: audit 2024-02-22T22:24:31.083522+0000 mon.smithi049 (mon.0) 428 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:32.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:32 smithi195 bash[18068]: audit 2024-02-22T22:24:31.083704+0000 mon.smithi049 (mon.0) 429 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:32.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:32 smithi195 bash[18068]: audit 2024-02-22T22:24:31.083886+0000 mon.smithi049 (mon.0) 430 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:32.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:32 smithi195 bash[18068]: cluster 2024-02-22T22:24:31.430074+0000 mgr.smithi049.pzczis (mgr.14180) 114 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-02-22T22:24:32.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:32 smithi195 bash[18068]: audit 2024-02-22T22:24:31.783466+0000 mon.smithi049 (mon.0) 431 : audit [INF] from='osd.1 [v2:172.21.15.49:6802/1635209479,v1:172.21.15.49:6803/1635209479]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-02-22T22:24:32.385 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:32 smithi049 bash[14150]: audit 2024-02-22T22:24:31.065444+0000 mon.smithi049 (mon.0) 423 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:24:32.386 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:32 smithi049 bash[14150]: cluster 2024-02-22T22:24:31.082649+0000 mon.smithi049 (mon.0) 424 : cluster [DBG] osdmap e21: 8 total, 2 up, 8 in 2024-02-22T22:24:32.386 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:32 smithi049 bash[14150]: audit 2024-02-22T22:24:31.082856+0000 mon.smithi049 (mon.0) 425 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:24:32.386 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:32 smithi049 bash[14150]: audit 2024-02-22T22:24:31.083140+0000 mon.smithi049 (mon.0) 426 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:32.386 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:32 smithi049 bash[14150]: audit 2024-02-22T22:24:31.083337+0000 mon.smithi049 (mon.0) 427 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:32.386 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:32 smithi049 bash[14150]: audit 2024-02-22T22:24:31.083522+0000 mon.smithi049 (mon.0) 428 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:32.386 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:32 smithi049 bash[14150]: audit 2024-02-22T22:24:31.083704+0000 mon.smithi049 (mon.0) 429 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:32.386 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:32 smithi049 bash[14150]: audit 2024-02-22T22:24:31.083886+0000 mon.smithi049 (mon.0) 430 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:32.386 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:32 smithi049 bash[14150]: cluster 2024-02-22T22:24:31.430074+0000 mgr.smithi049.pzczis (mgr.14180) 114 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-02-22T22:24:32.386 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:32 smithi049 bash[14150]: audit 2024-02-22T22:24:31.783466+0000 mon.smithi049 (mon.0) 431 : audit [INF] from='osd.1 [v2:172.21.15.49:6802/1635209479,v1:172.21.15.49:6803/1635209479]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-02-22T22:24:33.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:33 smithi195 bash[18068]: audit 2024-02-22T22:24:32.089898+0000 mon.smithi049 (mon.0) 432 : audit [INF] from='osd.1 [v2:172.21.15.49:6802/1635209479,v1:172.21.15.49:6803/1635209479]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-02-22T22:24:33.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:33 smithi195 bash[18068]: cluster 2024-02-22T22:24:32.090045+0000 mon.smithi049 (mon.0) 433 : cluster [DBG] osdmap e22: 8 total, 2 up, 8 in 2024-02-22T22:24:33.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:33 smithi195 bash[18068]: audit 2024-02-22T22:24:32.090258+0000 mon.smithi049 (mon.0) 434 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:24:33.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:33 smithi195 bash[18068]: audit 2024-02-22T22:24:32.090947+0000 mon.smithi049 (mon.0) 435 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:33.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:33 smithi195 bash[18068]: audit 2024-02-22T22:24:32.091392+0000 mon.smithi049 (mon.0) 436 : audit [INF] from='osd.1 [v2:172.21.15.49:6802/1635209479,v1:172.21.15.49:6803/1635209479]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi049", "root=default"]}]: dispatch 2024-02-22T22:24:33.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:33 smithi195 bash[18068]: audit 2024-02-22T22:24:32.091967+0000 mon.smithi049 (mon.0) 437 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:33.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:33 smithi195 bash[18068]: audit 2024-02-22T22:24:32.092346+0000 mon.smithi049 (mon.0) 438 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:33.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:33 smithi195 bash[18068]: audit 2024-02-22T22:24:32.092722+0000 mon.smithi049 (mon.0) 439 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:33.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:33 smithi195 bash[18068]: audit 2024-02-22T22:24:32.093081+0000 mon.smithi049 (mon.0) 440 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:33.353 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:33 smithi049 bash[14150]: audit 2024-02-22T22:24:32.089898+0000 mon.smithi049 (mon.0) 432 : audit [INF] from='osd.1 [v2:172.21.15.49:6802/1635209479,v1:172.21.15.49:6803/1635209479]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-02-22T22:24:33.353 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:33 smithi049 bash[14150]: cluster 2024-02-22T22:24:32.090045+0000 mon.smithi049 (mon.0) 433 : cluster [DBG] osdmap e22: 8 total, 2 up, 8 in 2024-02-22T22:24:33.353 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:33 smithi049 bash[14150]: audit 2024-02-22T22:24:32.090258+0000 mon.smithi049 (mon.0) 434 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:24:33.353 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:33 smithi049 bash[14150]: audit 2024-02-22T22:24:32.090947+0000 mon.smithi049 (mon.0) 435 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:33.353 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:33 smithi049 bash[14150]: audit 2024-02-22T22:24:32.091392+0000 mon.smithi049 (mon.0) 436 : audit [INF] from='osd.1 [v2:172.21.15.49:6802/1635209479,v1:172.21.15.49:6803/1635209479]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi049", "root=default"]}]: dispatch 2024-02-22T22:24:33.353 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:33 smithi049 bash[14150]: audit 2024-02-22T22:24:32.091967+0000 mon.smithi049 (mon.0) 437 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:33.353 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:33 smithi049 bash[14150]: audit 2024-02-22T22:24:32.092346+0000 mon.smithi049 (mon.0) 438 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:33.354 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:33 smithi049 bash[14150]: audit 2024-02-22T22:24:32.092722+0000 mon.smithi049 (mon.0) 439 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:33.354 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:33 smithi049 bash[14150]: audit 2024-02-22T22:24:32.093081+0000 mon.smithi049 (mon.0) 440 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:34.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:34 smithi195 bash[18068]: audit 2024-02-22T22:24:33.092008+0000 mon.smithi049 (mon.0) 441 : audit [INF] from='osd.1 [v2:172.21.15.49:6802/1635209479,v1:172.21.15.49:6803/1635209479]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi049", "root=default"]}]': finished 2024-02-22T22:24:34.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:34 smithi195 bash[18068]: cluster 2024-02-22T22:24:33.092163+0000 mon.smithi049 (mon.0) 442 : cluster [DBG] osdmap e23: 8 total, 2 up, 8 in 2024-02-22T22:24:34.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:34 smithi195 bash[18068]: audit 2024-02-22T22:24:33.092967+0000 mon.smithi049 (mon.0) 443 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:24:34.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:34 smithi195 bash[18068]: audit 2024-02-22T22:24:33.093682+0000 mon.smithi049 (mon.0) 444 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:34.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:34 smithi195 bash[18068]: audit 2024-02-22T22:24:33.100426+0000 mon.smithi049 (mon.0) 445 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:34.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:34 smithi195 bash[18068]: audit 2024-02-22T22:24:33.100904+0000 mon.smithi049 (mon.0) 446 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:34.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:34 smithi195 bash[18068]: audit 2024-02-22T22:24:33.101134+0000 mon.smithi049 (mon.0) 447 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:34.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:34 smithi195 bash[18068]: audit 2024-02-22T22:24:33.101429+0000 mon.smithi049 (mon.0) 448 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:34.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:34 smithi195 bash[18068]: audit 2024-02-22T22:24:33.101827+0000 mon.smithi049 (mon.0) 449 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:24:34.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:34 smithi195 bash[18068]: audit 2024-02-22T22:24:33.366494+0000 mon.smithi049 (mon.0) 450 : audit [INF] from='osd.4 [v2:172.21.15.195:6816/913072377,v1:172.21.15.195:6817/913072377]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-02-22T22:24:34.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:34 smithi195 bash[18068]: cluster 2024-02-22T22:24:33.430521+0000 mgr.smithi049.pzczis (mgr.14180) 115 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-02-22T22:24:34.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:34 smithi049 bash[14150]: audit 2024-02-22T22:24:33.092008+0000 mon.smithi049 (mon.0) 441 : audit [INF] from='osd.1 [v2:172.21.15.49:6802/1635209479,v1:172.21.15.49:6803/1635209479]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi049", "root=default"]}]': finished 2024-02-22T22:24:34.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:34 smithi049 bash[14150]: cluster 2024-02-22T22:24:33.092163+0000 mon.smithi049 (mon.0) 442 : cluster [DBG] osdmap e23: 8 total, 2 up, 8 in 2024-02-22T22:24:34.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:34 smithi049 bash[14150]: audit 2024-02-22T22:24:33.092967+0000 mon.smithi049 (mon.0) 443 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:24:34.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:34 smithi049 bash[14150]: audit 2024-02-22T22:24:33.093682+0000 mon.smithi049 (mon.0) 444 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:34.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:34 smithi049 bash[14150]: audit 2024-02-22T22:24:33.100426+0000 mon.smithi049 (mon.0) 445 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:34.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:34 smithi049 bash[14150]: audit 2024-02-22T22:24:33.100904+0000 mon.smithi049 (mon.0) 446 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:34.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:34 smithi049 bash[14150]: audit 2024-02-22T22:24:33.101134+0000 mon.smithi049 (mon.0) 447 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:34.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:34 smithi049 bash[14150]: audit 2024-02-22T22:24:33.101429+0000 mon.smithi049 (mon.0) 448 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:34.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:34 smithi049 bash[14150]: audit 2024-02-22T22:24:33.101827+0000 mon.smithi049 (mon.0) 449 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:24:34.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:34 smithi049 bash[14150]: audit 2024-02-22T22:24:33.366494+0000 mon.smithi049 (mon.0) 450 : audit [INF] from='osd.4 [v2:172.21.15.195:6816/913072377,v1:172.21.15.195:6817/913072377]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-02-22T22:24:34.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:34 smithi049 bash[14150]: cluster 2024-02-22T22:24:33.430521+0000 mgr.smithi049.pzczis (mgr.14180) 115 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-02-22T22:24:35.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:35 smithi049 bash[14150]: cluster 2024-02-22T22:24:32.743539+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-22T22:24:35.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:35 smithi049 bash[14150]: cluster 2024-02-22T22:24:32.743611+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-22T22:24:35.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:35 smithi049 bash[14150]: cluster 2024-02-22T22:24:34.101246+0000 mon.smithi049 (mon.0) 451 : cluster [INF] osd.1 [v2:172.21.15.49:6802/1635209479,v1:172.21.15.49:6803/1635209479] boot 2024-02-22T22:24:35.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:35 smithi049 bash[14150]: audit 2024-02-22T22:24:34.101304+0000 mon.smithi049 (mon.0) 452 : audit [INF] from='osd.4 [v2:172.21.15.195:6816/913072377,v1:172.21.15.195:6817/913072377]' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-02-22T22:24:35.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:35 smithi049 bash[14150]: cluster 2024-02-22T22:24:34.101353+0000 mon.smithi049 (mon.0) 453 : cluster [DBG] osdmap e24: 8 total, 3 up, 8 in 2024-02-22T22:24:35.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:35 smithi049 bash[14150]: audit 2024-02-22T22:24:34.102107+0000 mon.smithi049 (mon.0) 454 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:24:35.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:35 smithi049 bash[14150]: audit 2024-02-22T22:24:34.102463+0000 mon.smithi049 (mon.0) 455 : audit [INF] from='osd.4 [v2:172.21.15.195:6816/913072377,v1:172.21.15.195:6817/913072377]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-02-22T22:24:35.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:35 smithi049 bash[14150]: audit 2024-02-22T22:24:34.102759+0000 mon.smithi049 (mon.0) 456 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:35.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:35 smithi049 bash[14150]: audit 2024-02-22T22:24:34.103021+0000 mon.smithi049 (mon.0) 457 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:35.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:35 smithi049 bash[14150]: audit 2024-02-22T22:24:34.103273+0000 mon.smithi049 (mon.0) 458 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:35.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:35 smithi049 bash[14150]: audit 2024-02-22T22:24:34.103530+0000 mon.smithi049 (mon.0) 459 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:35.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:35 smithi049 bash[14150]: audit 2024-02-22T22:24:34.103778+0000 mon.smithi049 (mon.0) 460 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:35.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:35 smithi049 bash[14150]: audit 2024-02-22T22:24:34.104071+0000 mon.smithi049 (mon.0) 461 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 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-22T22:24:35.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:35 smithi049 bash[14150]: audit 2024-02-22T22:24:35.102615+0000 mon.smithi049 (mon.0) 462 : audit [INF] from='osd.4 [v2:172.21.15.195:6816/913072377,v1:172.21.15.195:6817/913072377]' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-02-22T22:24:35.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:35 smithi049 bash[14150]: audit 2024-02-22T22:24:35.102729+0000 mon.smithi049 (mon.0) 463 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 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-22T22:24:35.696 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:35 smithi049 bash[14150]: cluster 2024-02-22T22:24:35.102778+0000 mon.smithi049 (mon.0) 464 : cluster [DBG] osdmap e25: 8 total, 3 up, 8 in 2024-02-22T22:24:35.696 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:35 smithi049 bash[14150]: audit 2024-02-22T22:24:35.102992+0000 mon.smithi049 (mon.0) 465 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:35.696 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:35 smithi049 bash[14150]: audit 2024-02-22T22:24:35.103608+0000 mon.smithi049 (mon.0) 466 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:35.696 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:35 smithi049 bash[14150]: audit 2024-02-22T22:24:35.104465+0000 mon.smithi049 (mon.0) 467 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:35.696 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:35 smithi049 bash[14150]: audit 2024-02-22T22:24:35.104846+0000 mon.smithi049 (mon.0) 468 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:35.696 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:35 smithi049 bash[14150]: audit 2024-02-22T22:24:35.105179+0000 mon.smithi049 (mon.0) 469 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:35.696 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:35 smithi049 bash[14150]: audit 2024-02-22T22:24:35.106142+0000 mon.smithi049 (mon.0) 470 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]: dispatch 2024-02-22T22:24:35.696 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:35 smithi049 bash[14150]: audit 2024-02-22T22:24:35.109491+0000 mon.smithi049 (mon.0) 471 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:35.696 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:35 smithi049 bash[14150]: cluster 2024-02-22T22:24:35.431038+0000 mgr.smithi049.pzczis (mgr.14180) 116 : cluster [DBG] pgmap v88: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-02-22T22:24:35.704 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:24:36.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:35 smithi195 bash[18068]: cluster 2024-02-22T22:24:32.743539+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-22T22:24:36.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:35 smithi195 bash[18068]: cluster 2024-02-22T22:24:32.743611+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-22T22:24:36.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:35 smithi195 bash[18068]: cluster 2024-02-22T22:24:34.101246+0000 mon.smithi049 (mon.0) 451 : cluster [INF] osd.1 [v2:172.21.15.49:6802/1635209479,v1:172.21.15.49:6803/1635209479] boot 2024-02-22T22:24:36.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:35 smithi195 bash[18068]: audit 2024-02-22T22:24:34.101304+0000 mon.smithi049 (mon.0) 452 : audit [INF] from='osd.4 [v2:172.21.15.195:6816/913072377,v1:172.21.15.195:6817/913072377]' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-02-22T22:24:36.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:35 smithi195 bash[18068]: cluster 2024-02-22T22:24:34.101353+0000 mon.smithi049 (mon.0) 453 : cluster [DBG] osdmap e24: 8 total, 3 up, 8 in 2024-02-22T22:24:36.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:35 smithi195 bash[18068]: audit 2024-02-22T22:24:34.102107+0000 mon.smithi049 (mon.0) 454 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-22T22:24:36.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:35 smithi195 bash[18068]: audit 2024-02-22T22:24:34.102463+0000 mon.smithi049 (mon.0) 455 : audit [INF] from='osd.4 [v2:172.21.15.195:6816/913072377,v1:172.21.15.195:6817/913072377]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-02-22T22:24:36.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:35 smithi195 bash[18068]: audit 2024-02-22T22:24:34.102759+0000 mon.smithi049 (mon.0) 456 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:36.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:35 smithi195 bash[18068]: audit 2024-02-22T22:24:34.103021+0000 mon.smithi049 (mon.0) 457 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:36.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:35 smithi195 bash[18068]: audit 2024-02-22T22:24:34.103273+0000 mon.smithi049 (mon.0) 458 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:36.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:35 smithi195 bash[18068]: audit 2024-02-22T22:24:34.103530+0000 mon.smithi049 (mon.0) 459 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:36.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:35 smithi195 bash[18068]: audit 2024-02-22T22:24:34.103778+0000 mon.smithi049 (mon.0) 460 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:36.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:35 smithi195 bash[18068]: audit 2024-02-22T22:24:34.104071+0000 mon.smithi049 (mon.0) 461 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 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-22T22:24:36.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:35 smithi195 bash[18068]: audit 2024-02-22T22:24:35.102615+0000 mon.smithi049 (mon.0) 462 : audit [INF] from='osd.4 [v2:172.21.15.195:6816/913072377,v1:172.21.15.195:6817/913072377]' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-02-22T22:24:36.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:35 smithi195 bash[18068]: audit 2024-02-22T22:24:35.102729+0000 mon.smithi049 (mon.0) 463 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 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-22T22:24:36.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:35 smithi195 bash[18068]: cluster 2024-02-22T22:24:35.102778+0000 mon.smithi049 (mon.0) 464 : cluster [DBG] osdmap e25: 8 total, 3 up, 8 in 2024-02-22T22:24:36.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:35 smithi195 bash[18068]: audit 2024-02-22T22:24:35.102992+0000 mon.smithi049 (mon.0) 465 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:36.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:35 smithi195 bash[18068]: audit 2024-02-22T22:24:35.103608+0000 mon.smithi049 (mon.0) 466 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:36.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:35 smithi195 bash[18068]: audit 2024-02-22T22:24:35.104465+0000 mon.smithi049 (mon.0) 467 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:36.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:35 smithi195 bash[18068]: audit 2024-02-22T22:24:35.104846+0000 mon.smithi049 (mon.0) 468 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:36.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:35 smithi195 bash[18068]: audit 2024-02-22T22:24:35.105179+0000 mon.smithi049 (mon.0) 469 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:36.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:35 smithi195 bash[18068]: audit 2024-02-22T22:24:35.106142+0000 mon.smithi049 (mon.0) 470 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]: dispatch 2024-02-22T22:24:36.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:35 smithi195 bash[18068]: audit 2024-02-22T22:24:35.109491+0000 mon.smithi049 (mon.0) 471 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:36.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:35 smithi195 bash[18068]: cluster 2024-02-22T22:24:35.431038+0000 mgr.smithi049.pzczis (mgr.14180) 116 : cluster [DBG] pgmap v88: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-02-22T22:24:36.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:36 smithi049 bash[14150]: cluster 2024-02-22T22:24:34.388795+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-22T22:24:36.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:36 smithi049 bash[14150]: cluster 2024-02-22T22:24:34.388854+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-22T22:24:36.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:36 smithi049 bash[14150]: audit 2024-02-22T22:24:35.703693+0000 mon.smithi049 (mon.0) 472 : audit [DBG] from='client.? 172.21.15.49:0/2272645701' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:24:36.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:36 smithi049 bash[14150]: audit 2024-02-22T22:24:36.108824+0000 mon.smithi049 (mon.0) 473 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]': finished 2024-02-22T22:24:36.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:36 smithi049 bash[14150]: cluster 2024-02-22T22:24:36.108905+0000 mon.smithi049 (mon.0) 474 : cluster [INF] osd.4 [v2:172.21.15.195:6816/913072377,v1:172.21.15.195:6817/913072377] boot 2024-02-22T22:24:36.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:36 smithi049 bash[14150]: cluster 2024-02-22T22:24:36.108939+0000 mon.smithi049 (mon.0) 475 : cluster [DBG] osdmap e26: 8 total, 4 up, 8 in 2024-02-22T22:24:36.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:36 smithi049 bash[14150]: audit 2024-02-22T22:24:36.109180+0000 mon.smithi049 (mon.0) 476 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:36.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:36 smithi049 bash[14150]: audit 2024-02-22T22:24:36.110414+0000 mon.smithi049 (mon.0) 477 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:36.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:36 smithi049 bash[14150]: audit 2024-02-22T22:24:36.111091+0000 mon.smithi049 (mon.0) 478 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:36.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:36 smithi049 bash[14150]: audit 2024-02-22T22:24:36.111446+0000 mon.smithi049 (mon.0) 479 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:36.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:36 smithi049 bash[14150]: audit 2024-02-22T22:24:36.111724+0000 mon.smithi049 (mon.0) 480 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:36.924 INFO:teuthology.orchestra.run.smithi049.stdout:{"epoch":25,"num_osds":8,"num_up_osds":3,"osd_up_since":1708640674,"num_in_osds":8,"osd_in_since":1708640640,"num_remapped_pgs":0} 2024-02-22T22:24:37.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:36 smithi195 bash[18068]: cluster 2024-02-22T22:24:34.388795+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-22T22:24:37.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:36 smithi195 bash[18068]: cluster 2024-02-22T22:24:34.388854+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-22T22:24:37.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:36 smithi195 bash[18068]: audit 2024-02-22T22:24:35.703693+0000 mon.smithi049 (mon.0) 472 : audit [DBG] from='client.? 172.21.15.49:0/2272645701' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:24:37.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:36 smithi195 bash[18068]: audit 2024-02-22T22:24:36.108824+0000 mon.smithi049 (mon.0) 473 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]': finished 2024-02-22T22:24:37.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:36 smithi195 bash[18068]: cluster 2024-02-22T22:24:36.108905+0000 mon.smithi049 (mon.0) 474 : cluster [INF] osd.4 [v2:172.21.15.195:6816/913072377,v1:172.21.15.195:6817/913072377] boot 2024-02-22T22:24:37.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:36 smithi195 bash[18068]: cluster 2024-02-22T22:24:36.108939+0000 mon.smithi049 (mon.0) 475 : cluster [DBG] osdmap e26: 8 total, 4 up, 8 in 2024-02-22T22:24:37.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:36 smithi195 bash[18068]: audit 2024-02-22T22:24:36.109180+0000 mon.smithi049 (mon.0) 476 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:37.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:36 smithi195 bash[18068]: audit 2024-02-22T22:24:36.110414+0000 mon.smithi049 (mon.0) 477 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-22T22:24:37.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:36 smithi195 bash[18068]: audit 2024-02-22T22:24:36.111091+0000 mon.smithi049 (mon.0) 478 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:37.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:36 smithi195 bash[18068]: audit 2024-02-22T22:24:36.111446+0000 mon.smithi049 (mon.0) 479 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:37.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:36 smithi195 bash[18068]: audit 2024-02-22T22:24:36.111724+0000 mon.smithi049 (mon.0) 480 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:37.925 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-22T22:24:38.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:38 smithi049 bash[14150]: audit 2024-02-22T22:24:37.080217+0000 mon.smithi049 (mon.0) 481 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:24:38.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:38 smithi049 bash[14150]: audit 2024-02-22T22:24:37.081193+0000 mon.smithi049 (mon.0) 482 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-02-22T22:24:38.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:38 smithi049 bash[14150]: audit 2024-02-22T22:24:37.082116+0000 mon.smithi049 (mon.0) 483 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:24:38.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:38 smithi049 bash[14150]: cephadm 2024-02-22T22:24:37.082892+0000 mgr.smithi049.pzczis (mgr.14180) 117 : cephadm [INF] Deploying daemon osd.7 on smithi049 2024-02-22T22:24:38.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:38 smithi049 bash[14150]: cluster 2024-02-22T22:24:37.112534+0000 mon.smithi049 (mon.0) 484 : cluster [DBG] osdmap e27: 8 total, 4 up, 8 in 2024-02-22T22:24:38.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:38 smithi049 bash[14150]: audit 2024-02-22T22:24:37.112695+0000 mon.smithi049 (mon.0) 485 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:38.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:38 smithi049 bash[14150]: audit 2024-02-22T22:24:37.113060+0000 mon.smithi049 (mon.0) 486 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:38.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:38 smithi049 bash[14150]: audit 2024-02-22T22:24:37.113259+0000 mon.smithi049 (mon.0) 487 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:38.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:38 smithi049 bash[14150]: audit 2024-02-22T22:24:37.113478+0000 mon.smithi049 (mon.0) 488 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:38.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:38 smithi049 bash[14150]: cluster 2024-02-22T22:24:37.431610+0000 mgr.smithi049.pzczis (mgr.14180) 118 : cluster [DBG] pgmap v91: 1 pgs: 1 creating+peering; 0 B data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-02-22T22:24:38.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:38 smithi049 bash[14150]: audit 2024-02-22T22:24:38.031469+0000 mon.smithi195 (mon.1) 15 : audit [INF] from='osd.6 [v2:172.21.15.195:6824/3220905754,v1:172.21.15.195:6825/3220905754]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-02-22T22:24:38.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:38 smithi049 bash[14150]: audit 2024-02-22T22:24:38.033820+0000 mon.smithi049 (mon.0) 489 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-02-22T22:24:38.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:38 smithi195 bash[18068]: audit 2024-02-22T22:24:37.080217+0000 mon.smithi049 (mon.0) 481 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:24:38.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:38 smithi195 bash[18068]: audit 2024-02-22T22:24:37.081193+0000 mon.smithi049 (mon.0) 482 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-02-22T22:24:38.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:38 smithi195 bash[18068]: audit 2024-02-22T22:24:37.082116+0000 mon.smithi049 (mon.0) 483 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:24:38.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:38 smithi195 bash[18068]: cephadm 2024-02-22T22:24:37.082892+0000 mgr.smithi049.pzczis (mgr.14180) 117 : cephadm [INF] Deploying daemon osd.7 on smithi049 2024-02-22T22:24:38.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:38 smithi195 bash[18068]: cluster 2024-02-22T22:24:37.112534+0000 mon.smithi049 (mon.0) 484 : cluster [DBG] osdmap e27: 8 total, 4 up, 8 in 2024-02-22T22:24:38.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:38 smithi195 bash[18068]: audit 2024-02-22T22:24:37.112695+0000 mon.smithi049 (mon.0) 485 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:38.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:38 smithi195 bash[18068]: audit 2024-02-22T22:24:37.113060+0000 mon.smithi049 (mon.0) 486 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:38.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:38 smithi195 bash[18068]: audit 2024-02-22T22:24:37.113259+0000 mon.smithi049 (mon.0) 487 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:38.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:38 smithi195 bash[18068]: audit 2024-02-22T22:24:37.113478+0000 mon.smithi049 (mon.0) 488 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:38.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:38 smithi195 bash[18068]: cluster 2024-02-22T22:24:37.431610+0000 mgr.smithi049.pzczis (mgr.14180) 118 : cluster [DBG] pgmap v91: 1 pgs: 1 creating+peering; 0 B data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-02-22T22:24:38.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:38 smithi195 bash[18068]: audit 2024-02-22T22:24:38.031469+0000 mon.smithi195 (mon.1) 15 : audit [INF] from='osd.6 [v2:172.21.15.195:6824/3220905754,v1:172.21.15.195:6825/3220905754]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-02-22T22:24:38.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:38 smithi195 bash[18068]: audit 2024-02-22T22:24:38.033820+0000 mon.smithi049 (mon.0) 489 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-02-22T22:24:39.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:39 smithi195 bash[18068]: audit 2024-02-22T22:24:38.118601+0000 mon.smithi195 (mon.1) 16 : audit [INF] from='osd.6 [v2:172.21.15.195:6824/3220905754,v1:172.21.15.195:6825/3220905754]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-02-22T22:24:39.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:39 smithi195 bash[18068]: audit 2024-02-22T22:24:38.119044+0000 mon.smithi049 (mon.0) 490 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-02-22T22:24:39.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:39 smithi195 bash[18068]: cluster 2024-02-22T22:24:38.119152+0000 mon.smithi049 (mon.0) 491 : cluster [DBG] osdmap e28: 8 total, 4 up, 8 in 2024-02-22T22:24:39.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:39 smithi195 bash[18068]: audit 2024-02-22T22:24:38.119375+0000 mon.smithi049 (mon.0) 492 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:39.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:39 smithi195 bash[18068]: audit 2024-02-22T22:24:38.119883+0000 mon.smithi049 (mon.0) 493 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:39.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:39 smithi195 bash[18068]: audit 2024-02-22T22:24:38.120244+0000 mon.smithi049 (mon.0) 494 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:39.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:39 smithi195 bash[18068]: audit 2024-02-22T22:24:38.120636+0000 mon.smithi049 (mon.0) 495 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:39.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:39 smithi195 bash[18068]: audit 2024-02-22T22:24:38.121410+0000 mon.smithi049 (mon.0) 496 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-02-22T22:24:39.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:39 smithi195 bash[18068]: audit 2024-02-22T22:24:39.045194+0000 mon.smithi049 (mon.0) 497 : audit [INF] from='osd.3 [v2:172.21.15.49:6810/451529286,v1:172.21.15.49:6811/451529286]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-02-22T22:24:39.430 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:39 smithi049 bash[14150]: audit 2024-02-22T22:24:38.118601+0000 mon.smithi195 (mon.1) 16 : audit [INF] from='osd.6 [v2:172.21.15.195:6824/3220905754,v1:172.21.15.195:6825/3220905754]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-02-22T22:24:39.430 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:39 smithi049 bash[14150]: audit 2024-02-22T22:24:38.119044+0000 mon.smithi049 (mon.0) 490 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-02-22T22:24:39.430 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:39 smithi049 bash[14150]: cluster 2024-02-22T22:24:38.119152+0000 mon.smithi049 (mon.0) 491 : cluster [DBG] osdmap e28: 8 total, 4 up, 8 in 2024-02-22T22:24:39.430 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:39 smithi049 bash[14150]: audit 2024-02-22T22:24:38.119375+0000 mon.smithi049 (mon.0) 492 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:39.430 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:39 smithi049 bash[14150]: audit 2024-02-22T22:24:38.119883+0000 mon.smithi049 (mon.0) 493 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:39.430 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:39 smithi049 bash[14150]: audit 2024-02-22T22:24:38.120244+0000 mon.smithi049 (mon.0) 494 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:39.430 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:39 smithi049 bash[14150]: audit 2024-02-22T22:24:38.120636+0000 mon.smithi049 (mon.0) 495 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:39.430 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:39 smithi049 bash[14150]: audit 2024-02-22T22:24:38.121410+0000 mon.smithi049 (mon.0) 496 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-02-22T22:24:39.430 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:39 smithi049 bash[14150]: audit 2024-02-22T22:24:39.045194+0000 mon.smithi049 (mon.0) 497 : audit [INF] from='osd.3 [v2:172.21.15.49:6810/451529286,v1:172.21.15.49:6811/451529286]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-02-22T22:24:40.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:40 smithi049 bash[14150]: audit 2024-02-22T22:24:39.129143+0000 mon.smithi049 (mon.0) 498 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-02-22T22:24:40.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:40 smithi049 bash[14150]: audit 2024-02-22T22:24:39.129225+0000 mon.smithi049 (mon.0) 499 : audit [INF] from='osd.3 [v2:172.21.15.49:6810/451529286,v1:172.21.15.49:6811/451529286]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-02-22T22:24:40.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:40 smithi049 bash[14150]: cluster 2024-02-22T22:24:39.129320+0000 mon.smithi049 (mon.0) 500 : cluster [DBG] osdmap e29: 8 total, 4 up, 8 in 2024-02-22T22:24:40.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:40 smithi049 bash[14150]: audit 2024-02-22T22:24:39.129529+0000 mon.smithi049 (mon.0) 501 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:40.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:40 smithi049 bash[14150]: audit 2024-02-22T22:24:39.129963+0000 mon.smithi049 (mon.0) 502 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:40.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:40 smithi049 bash[14150]: audit 2024-02-22T22:24:39.130210+0000 mon.smithi049 (mon.0) 503 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:40.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:40 smithi049 bash[14150]: audit 2024-02-22T22:24:39.130526+0000 mon.smithi049 (mon.0) 504 : audit [INF] from='osd.3 [v2:172.21.15.49:6810/451529286,v1:172.21.15.49:6811/451529286]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi049", "root=default"]}]: dispatch 2024-02-22T22:24:40.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:40 smithi049 bash[14150]: audit 2024-02-22T22:24:39.130827+0000 mon.smithi049 (mon.0) 505 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:40.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:40 smithi049 bash[14150]: audit 2024-02-22T22:24:39.136009+0000 mon.smithi049 (mon.0) 506 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:40.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:40 smithi049 bash[14150]: cluster 2024-02-22T22:24:39.432081+0000 mgr.smithi049.pzczis (mgr.14180) 119 : cluster [DBG] pgmap v94: 1 pgs: 1 creating+peering; 0 B data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-02-22T22:24:40.501 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:40 smithi195 bash[18068]: audit 2024-02-22T22:24:39.129143+0000 mon.smithi049 (mon.0) 498 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-02-22T22:24:40.501 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:40 smithi195 bash[18068]: audit 2024-02-22T22:24:39.129225+0000 mon.smithi049 (mon.0) 499 : audit [INF] from='osd.3 [v2:172.21.15.49:6810/451529286,v1:172.21.15.49:6811/451529286]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-02-22T22:24:40.502 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:40 smithi195 bash[18068]: cluster 2024-02-22T22:24:39.129320+0000 mon.smithi049 (mon.0) 500 : cluster [DBG] osdmap e29: 8 total, 4 up, 8 in 2024-02-22T22:24:40.502 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:40 smithi195 bash[18068]: audit 2024-02-22T22:24:39.129529+0000 mon.smithi049 (mon.0) 501 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:40.502 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:40 smithi195 bash[18068]: audit 2024-02-22T22:24:39.129963+0000 mon.smithi049 (mon.0) 502 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:40.502 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:40 smithi195 bash[18068]: audit 2024-02-22T22:24:39.130210+0000 mon.smithi049 (mon.0) 503 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:40.502 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:40 smithi195 bash[18068]: audit 2024-02-22T22:24:39.130526+0000 mon.smithi049 (mon.0) 504 : audit [INF] from='osd.3 [v2:172.21.15.49:6810/451529286,v1:172.21.15.49:6811/451529286]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi049", "root=default"]}]: dispatch 2024-02-22T22:24:40.502 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:40 smithi195 bash[18068]: audit 2024-02-22T22:24:39.130827+0000 mon.smithi049 (mon.0) 505 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:40.502 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:40 smithi195 bash[18068]: audit 2024-02-22T22:24:39.136009+0000 mon.smithi049 (mon.0) 506 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:40.502 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:40 smithi195 bash[18068]: cluster 2024-02-22T22:24:39.432081+0000 mgr.smithi049.pzczis (mgr.14180) 119 : cluster [DBG] pgmap v94: 1 pgs: 1 creating+peering; 0 B data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-02-22T22:24:41.325 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:41 smithi049 bash[14150]: cluster 2024-02-22T22:24:39.057366+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-22T22:24:41.325 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:41 smithi049 bash[14150]: cluster 2024-02-22T22:24:39.057455+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-22T22:24:41.325 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:41 smithi049 bash[14150]: audit 2024-02-22T22:24:40.131586+0000 mon.smithi049 (mon.0) 507 : audit [INF] from='osd.3 [v2:172.21.15.49:6810/451529286,v1:172.21.15.49:6811/451529286]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi049", "root=default"]}]': finished 2024-02-22T22:24:41.325 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:41 smithi049 bash[14150]: cluster 2024-02-22T22:24:40.131689+0000 mon.smithi049 (mon.0) 508 : cluster [INF] osd.6 [v2:172.21.15.195:6824/3220905754,v1:172.21.15.195:6825/3220905754] boot 2024-02-22T22:24:41.326 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:41 smithi049 bash[14150]: cluster 2024-02-22T22:24:40.131730+0000 mon.smithi049 (mon.0) 509 : cluster [DBG] osdmap e30: 8 total, 5 up, 8 in 2024-02-22T22:24:41.326 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:41 smithi049 bash[14150]: audit 2024-02-22T22:24:40.132137+0000 mon.smithi049 (mon.0) 510 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:41.326 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:41 smithi049 bash[14150]: audit 2024-02-22T22:24:40.132390+0000 mon.smithi049 (mon.0) 511 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:41.326 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:41 smithi049 bash[14150]: audit 2024-02-22T22:24:40.132899+0000 mon.smithi049 (mon.0) 512 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:41.326 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:41 smithi049 bash[14150]: audit 2024-02-22T22:24:40.133108+0000 mon.smithi049 (mon.0) 513 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:41.326 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:41 smithi049 bash[14150]: audit 2024-02-22T22:24:40.170433+0000 mon.smithi049 (mon.0) 514 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:41.326 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:41 smithi049 bash[14150]: audit 2024-02-22T22:24:41.043795+0000 mon.smithi049 (mon.0) 515 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:24:41.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:41 smithi195 bash[18068]: cluster 2024-02-22T22:24:39.057366+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-22T22:24:41.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:41 smithi195 bash[18068]: cluster 2024-02-22T22:24:39.057455+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-22T22:24:41.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:41 smithi195 bash[18068]: audit 2024-02-22T22:24:40.131586+0000 mon.smithi049 (mon.0) 507 : audit [INF] from='osd.3 [v2:172.21.15.49:6810/451529286,v1:172.21.15.49:6811/451529286]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi049", "root=default"]}]': finished 2024-02-22T22:24:41.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:41 smithi195 bash[18068]: cluster 2024-02-22T22:24:40.131689+0000 mon.smithi049 (mon.0) 508 : cluster [INF] osd.6 [v2:172.21.15.195:6824/3220905754,v1:172.21.15.195:6825/3220905754] boot 2024-02-22T22:24:41.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:41 smithi195 bash[18068]: cluster 2024-02-22T22:24:40.131730+0000 mon.smithi049 (mon.0) 509 : cluster [DBG] osdmap e30: 8 total, 5 up, 8 in 2024-02-22T22:24:41.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:41 smithi195 bash[18068]: audit 2024-02-22T22:24:40.132137+0000 mon.smithi049 (mon.0) 510 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:41.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:41 smithi195 bash[18068]: audit 2024-02-22T22:24:40.132390+0000 mon.smithi049 (mon.0) 511 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:41.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:41 smithi195 bash[18068]: audit 2024-02-22T22:24:40.132899+0000 mon.smithi049 (mon.0) 512 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-22T22:24:41.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:41 smithi195 bash[18068]: audit 2024-02-22T22:24:40.133108+0000 mon.smithi049 (mon.0) 513 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:41.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:41 smithi195 bash[18068]: audit 2024-02-22T22:24:40.170433+0000 mon.smithi049 (mon.0) 514 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:41.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:41 smithi195 bash[18068]: audit 2024-02-22T22:24:41.043795+0000 mon.smithi049 (mon.0) 515 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:24:42.506 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:42 smithi049 bash[14150]: cluster 2024-02-22T22:24:40.021343+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-22T22:24:42.506 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:42 smithi049 bash[14150]: cluster 2024-02-22T22:24:40.021450+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-22T22:24:42.506 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:42 smithi049 bash[14150]: audit 2024-02-22T22:24:41.136460+0000 mon.smithi049 (mon.0) 516 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:42.506 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:42 smithi049 bash[14150]: cluster 2024-02-22T22:24:41.147564+0000 mon.smithi049 (mon.0) 517 : cluster [INF] osd.3 [v2:172.21.15.49:6810/451529286,v1:172.21.15.49:6811/451529286] boot 2024-02-22T22:24:42.506 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:42 smithi049 bash[14150]: cluster 2024-02-22T22:24:41.147655+0000 mon.smithi049 (mon.0) 518 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2024-02-22T22:24:42.507 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:42 smithi049 bash[14150]: audit 2024-02-22T22:24:41.147844+0000 mon.smithi049 (mon.0) 519 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:42.507 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:42 smithi049 bash[14150]: audit 2024-02-22T22:24:41.148369+0000 mon.smithi049 (mon.0) 520 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:42.507 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:42 smithi049 bash[14150]: audit 2024-02-22T22:24:41.148708+0000 mon.smithi049 (mon.0) 521 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:42.507 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:42 smithi049 bash[14150]: cluster 2024-02-22T22:24:41.432640+0000 mgr.smithi049.pzczis (mgr.14180) 120 : cluster [DBG] pgmap v97: 1 pgs: 1 remapped+peering; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-02-22T22:24:42.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:42 smithi195 bash[18068]: cluster 2024-02-22T22:24:40.021343+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-22T22:24:42.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:42 smithi195 bash[18068]: cluster 2024-02-22T22:24:40.021450+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-22T22:24:42.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:42 smithi195 bash[18068]: audit 2024-02-22T22:24:41.136460+0000 mon.smithi049 (mon.0) 516 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:42.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:42 smithi195 bash[18068]: cluster 2024-02-22T22:24:41.147564+0000 mon.smithi049 (mon.0) 517 : cluster [INF] osd.3 [v2:172.21.15.49:6810/451529286,v1:172.21.15.49:6811/451529286] boot 2024-02-22T22:24:42.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:42 smithi195 bash[18068]: cluster 2024-02-22T22:24:41.147655+0000 mon.smithi049 (mon.0) 518 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2024-02-22T22:24:42.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:42 smithi195 bash[18068]: audit 2024-02-22T22:24:41.147844+0000 mon.smithi049 (mon.0) 519 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-22T22:24:42.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:42 smithi195 bash[18068]: audit 2024-02-22T22:24:41.148369+0000 mon.smithi049 (mon.0) 520 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:42.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:42 smithi195 bash[18068]: audit 2024-02-22T22:24:41.148708+0000 mon.smithi049 (mon.0) 521 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:42.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:42 smithi195 bash[18068]: cluster 2024-02-22T22:24:41.432640+0000 mgr.smithi049.pzczis (mgr.14180) 120 : cluster [DBG] pgmap v97: 1 pgs: 1 remapped+peering; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-02-22T22:24:43.341 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:43 smithi049 bash[14150]: cluster 2024-02-22T22:24:42.152118+0000 mon.smithi049 (mon.0) 522 : cluster [DBG] osdmap e32: 8 total, 6 up, 8 in 2024-02-22T22:24:43.341 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:43 smithi049 bash[14150]: audit 2024-02-22T22:24:42.152310+0000 mon.smithi049 (mon.0) 523 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:43.341 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:43 smithi049 bash[14150]: audit 2024-02-22T22:24:42.152650+0000 mon.smithi049 (mon.0) 524 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:43.438 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:24:43.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:43 smithi195 bash[18068]: cluster 2024-02-22T22:24:42.152118+0000 mon.smithi049 (mon.0) 522 : cluster [DBG] osdmap e32: 8 total, 6 up, 8 in 2024-02-22T22:24:43.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:43 smithi195 bash[18068]: audit 2024-02-22T22:24:42.152310+0000 mon.smithi049 (mon.0) 523 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:43.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:43 smithi195 bash[18068]: audit 2024-02-22T22:24:42.152650+0000 mon.smithi049 (mon.0) 524 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:44.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:44 smithi049 bash[14150]: cluster 2024-02-22T22:24:43.159630+0000 mon.smithi049 (mon.0) 525 : cluster [DBG] osdmap e33: 8 total, 6 up, 8 in 2024-02-22T22:24:44.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:44 smithi049 bash[14150]: audit 2024-02-22T22:24:43.159840+0000 mon.smithi049 (mon.0) 526 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:44.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:44 smithi049 bash[14150]: audit 2024-02-22T22:24:43.160264+0000 mon.smithi049 (mon.0) 527 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:44.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:44 smithi049 bash[14150]: cluster 2024-02-22T22:24:43.433042+0000 mgr.smithi049.pzczis (mgr.14180) 121 : cluster [DBG] pgmap v100: 1 pgs: 1 remapped+peering; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-22T22:24:44.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:44 smithi049 bash[14150]: audit 2024-02-22T22:24:43.437283+0000 mon.smithi049 (mon.0) 528 : audit [DBG] from='client.? 172.21.15.49:0/2275111540' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:24:44.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:44 smithi195 bash[18068]: cluster 2024-02-22T22:24:43.159630+0000 mon.smithi049 (mon.0) 525 : cluster [DBG] osdmap e33: 8 total, 6 up, 8 in 2024-02-22T22:24:44.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:44 smithi195 bash[18068]: audit 2024-02-22T22:24:43.159840+0000 mon.smithi049 (mon.0) 526 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:44.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:44 smithi195 bash[18068]: audit 2024-02-22T22:24:43.160264+0000 mon.smithi049 (mon.0) 527 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:44.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:44 smithi195 bash[18068]: cluster 2024-02-22T22:24:43.433042+0000 mgr.smithi049.pzczis (mgr.14180) 121 : cluster [DBG] pgmap v100: 1 pgs: 1 remapped+peering; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-22T22:24:44.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:44 smithi195 bash[18068]: audit 2024-02-22T22:24:43.437283+0000 mon.smithi049 (mon.0) 528 : audit [DBG] from='client.? 172.21.15.49:0/2275111540' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:24:44.635 INFO:teuthology.orchestra.run.smithi049.stdout:{"epoch":33,"num_osds":8,"num_up_osds":6,"osd_up_since":1708640681,"num_in_osds":8,"osd_in_since":1708640640,"num_remapped_pgs":0} 2024-02-22T22:24:45.636 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-22T22:24:46.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:46 smithi049 bash[14150]: audit 2024-02-22T22:24:45.144928+0000 mon.smithi049 (mon.0) 529 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:24:46.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:46 smithi049 bash[14150]: cluster 2024-02-22T22:24:45.434959+0000 mgr.smithi049.pzczis (mgr.14180) 122 : cluster [DBG] pgmap v101: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-22T22:24:46.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:46 smithi195 bash[18068]: audit 2024-02-22T22:24:45.144928+0000 mon.smithi049 (mon.0) 529 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:24:46.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:46 smithi195 bash[18068]: cluster 2024-02-22T22:24:45.434959+0000 mgr.smithi049.pzczis (mgr.14180) 122 : cluster [DBG] pgmap v101: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-22T22:24:47.258 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:47 smithi049 bash[14150]: audit 2024-02-22T22:24:46.982990+0000 mon.smithi049 (mon.0) 530 : audit [INF] from='osd.5 [v2:172.21.15.49:6818/987390570,v1:172.21.15.49:6819/987390570]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-02-22T22:24:47.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:47 smithi195 bash[18068]: audit 2024-02-22T22:24:46.982990+0000 mon.smithi049 (mon.0) 530 : audit [INF] from='osd.5 [v2:172.21.15.49:6818/987390570,v1:172.21.15.49:6819/987390570]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-02-22T22:24:48.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:48 smithi049 bash[14150]: audit 2024-02-22T22:24:47.161957+0000 mon.smithi049 (mon.0) 531 : audit [INF] from='osd.5 [v2:172.21.15.49:6818/987390570,v1:172.21.15.49:6819/987390570]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-02-22T22:24:48.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:48 smithi049 bash[14150]: cluster 2024-02-22T22:24:47.162053+0000 mon.smithi049 (mon.0) 532 : cluster [DBG] osdmap e34: 8 total, 6 up, 8 in 2024-02-22T22:24:48.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:48 smithi049 bash[14150]: audit 2024-02-22T22:24:47.162297+0000 mon.smithi049 (mon.0) 533 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:48.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:48 smithi049 bash[14150]: audit 2024-02-22T22:24:47.162959+0000 mon.smithi049 (mon.0) 534 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:48.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:48 smithi049 bash[14150]: audit 2024-02-22T22:24:47.163341+0000 mon.smithi049 (mon.0) 535 : audit [INF] from='osd.5 [v2:172.21.15.49:6818/987390570,v1:172.21.15.49:6819/987390570]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi049", "root=default"]}]: dispatch 2024-02-22T22:24:48.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:48 smithi049 bash[14150]: cluster 2024-02-22T22:24:47.435450+0000 mgr.smithi049.pzczis (mgr.14180) 123 : cluster [DBG] pgmap v103: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-22T22:24:48.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:48 smithi195 bash[18068]: audit 2024-02-22T22:24:47.161957+0000 mon.smithi049 (mon.0) 531 : audit [INF] from='osd.5 [v2:172.21.15.49:6818/987390570,v1:172.21.15.49:6819/987390570]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-02-22T22:24:48.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:48 smithi195 bash[18068]: cluster 2024-02-22T22:24:47.162053+0000 mon.smithi049 (mon.0) 532 : cluster [DBG] osdmap e34: 8 total, 6 up, 8 in 2024-02-22T22:24:48.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:48 smithi195 bash[18068]: audit 2024-02-22T22:24:47.162297+0000 mon.smithi049 (mon.0) 533 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:48.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:48 smithi195 bash[18068]: audit 2024-02-22T22:24:47.162959+0000 mon.smithi049 (mon.0) 534 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:48.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:48 smithi195 bash[18068]: audit 2024-02-22T22:24:47.163341+0000 mon.smithi049 (mon.0) 535 : audit [INF] from='osd.5 [v2:172.21.15.49:6818/987390570,v1:172.21.15.49:6819/987390570]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi049", "root=default"]}]: dispatch 2024-02-22T22:24:48.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:48 smithi195 bash[18068]: cluster 2024-02-22T22:24:47.435450+0000 mgr.smithi049.pzczis (mgr.14180) 123 : cluster [DBG] pgmap v103: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-22T22:24:49.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:49 smithi049 bash[14150]: audit 2024-02-22T22:24:48.163546+0000 mon.smithi049 (mon.0) 536 : audit [INF] from='osd.5 [v2:172.21.15.49:6818/987390570,v1:172.21.15.49:6819/987390570]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi049", "root=default"]}]': finished 2024-02-22T22:24:49.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:49 smithi049 bash[14150]: cluster 2024-02-22T22:24:48.163657+0000 mon.smithi049 (mon.0) 537 : cluster [DBG] osdmap e35: 8 total, 6 up, 8 in 2024-02-22T22:24:49.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:49 smithi049 bash[14150]: audit 2024-02-22T22:24:48.164180+0000 mon.smithi049 (mon.0) 538 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:49.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:49 smithi049 bash[14150]: audit 2024-02-22T22:24:48.164554+0000 mon.smithi049 (mon.0) 539 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:49.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:49 smithi049 bash[14150]: audit 2024-02-22T22:24:48.171000+0000 mon.smithi049 (mon.0) 540 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:49.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:49 smithi195 bash[18068]: audit 2024-02-22T22:24:48.163546+0000 mon.smithi049 (mon.0) 536 : audit [INF] from='osd.5 [v2:172.21.15.49:6818/987390570,v1:172.21.15.49:6819/987390570]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi049", "root=default"]}]': finished 2024-02-22T22:24:49.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:49 smithi195 bash[18068]: cluster 2024-02-22T22:24:48.163657+0000 mon.smithi049 (mon.0) 537 : cluster [DBG] osdmap e35: 8 total, 6 up, 8 in 2024-02-22T22:24:49.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:49 smithi195 bash[18068]: audit 2024-02-22T22:24:48.164180+0000 mon.smithi049 (mon.0) 538 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:49.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:49 smithi195 bash[18068]: audit 2024-02-22T22:24:48.164554+0000 mon.smithi049 (mon.0) 539 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:49.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:49 smithi195 bash[18068]: audit 2024-02-22T22:24:48.171000+0000 mon.smithi049 (mon.0) 540 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:50.189 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:24:50.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:50 smithi049 bash[14150]: cluster 2024-02-22T22:24:47.934841+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-22T22:24:50.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:50 smithi049 bash[14150]: cluster 2024-02-22T22:24:47.935007+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-22T22:24:50.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:50 smithi049 bash[14150]: cluster 2024-02-22T22:24:49.174059+0000 mon.smithi049 (mon.0) 541 : cluster [INF] osd.5 [v2:172.21.15.49:6818/987390570,v1:172.21.15.49:6819/987390570] boot 2024-02-22T22:24:50.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:50 smithi049 bash[14150]: cluster 2024-02-22T22:24:49.174143+0000 mon.smithi049 (mon.0) 542 : cluster [DBG] osdmap e36: 8 total, 7 up, 8 in 2024-02-22T22:24:50.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:50 smithi049 bash[14150]: audit 2024-02-22T22:24:49.174800+0000 mon.smithi049 (mon.0) 543 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:50.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:50 smithi049 bash[14150]: audit 2024-02-22T22:24:49.175535+0000 mon.smithi049 (mon.0) 544 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:50.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:50 smithi049 bash[14150]: cluster 2024-02-22T22:24:49.436038+0000 mgr.smithi049.pzczis (mgr.14180) 124 : cluster [DBG] pgmap v106: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-22T22:24:50.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:50 smithi195 bash[18068]: cluster 2024-02-22T22:24:47.934841+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-22T22:24:50.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:50 smithi195 bash[18068]: cluster 2024-02-22T22:24:47.935007+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-22T22:24:50.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:50 smithi195 bash[18068]: cluster 2024-02-22T22:24:49.174059+0000 mon.smithi049 (mon.0) 541 : cluster [INF] osd.5 [v2:172.21.15.49:6818/987390570,v1:172.21.15.49:6819/987390570] boot 2024-02-22T22:24:50.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:50 smithi195 bash[18068]: cluster 2024-02-22T22:24:49.174143+0000 mon.smithi049 (mon.0) 542 : cluster [DBG] osdmap e36: 8 total, 7 up, 8 in 2024-02-22T22:24:50.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:50 smithi195 bash[18068]: audit 2024-02-22T22:24:49.174800+0000 mon.smithi049 (mon.0) 543 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-22T22:24:50.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:50 smithi195 bash[18068]: audit 2024-02-22T22:24:49.175535+0000 mon.smithi049 (mon.0) 544 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:50.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:50 smithi195 bash[18068]: cluster 2024-02-22T22:24:49.436038+0000 mgr.smithi049.pzczis (mgr.14180) 124 : cluster [DBG] pgmap v106: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-22T22:24:50.906 INFO:teuthology.orchestra.run.smithi049.stdout:{"epoch":37,"num_osds":8,"num_up_osds":7,"osd_up_since":1708640689,"num_in_osds":8,"osd_in_since":1708640640,"num_remapped_pgs":0} 2024-02-22T22:24:51.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:51 smithi049 bash[14150]: cluster 2024-02-22T22:24:50.187342+0000 mon.smithi049 (mon.0) 545 : cluster [DBG] osdmap e37: 8 total, 7 up, 8 in 2024-02-22T22:24:51.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:51 smithi049 bash[14150]: audit 2024-02-22T22:24:50.187488+0000 mon.smithi049 (mon.0) 546 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:51.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:51 smithi049 bash[14150]: audit 2024-02-22T22:24:50.187794+0000 mon.smithi049 (mon.0) 547 : audit [DBG] from='client.? 172.21.15.49:0/3564386189' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:24:51.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:51 smithi195 bash[18068]: cluster 2024-02-22T22:24:50.187342+0000 mon.smithi049 (mon.0) 545 : cluster [DBG] osdmap e37: 8 total, 7 up, 8 in 2024-02-22T22:24:51.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:51 smithi195 bash[18068]: audit 2024-02-22T22:24:50.187488+0000 mon.smithi049 (mon.0) 546 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:51.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:51 smithi195 bash[18068]: audit 2024-02-22T22:24:50.187794+0000 mon.smithi049 (mon.0) 547 : audit [DBG] from='client.? 172.21.15.49:0/3564386189' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:24:51.907 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-22T22:24:52.467 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:52 smithi049 bash[14150]: cluster 2024-02-22T22:24:51.436659+0000 mgr.smithi049.pzczis (mgr.14180) 125 : cluster [DBG] pgmap v108: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-22T22:24:52.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:52 smithi195 bash[18068]: cluster 2024-02-22T22:24:51.436659+0000 mgr.smithi049.pzczis (mgr.14180) 125 : cluster [DBG] pgmap v108: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-22T22:24:54.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:54 smithi049 bash[14150]: cluster 2024-02-22T22:24:53.437214+0000 mgr.smithi049.pzczis (mgr.14180) 126 : cluster [DBG] pgmap v109: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-22T22:24:54.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:54 smithi049 bash[14150]: audit 2024-02-22T22:24:53.738308+0000 mon.smithi049 (mon.0) 548 : audit [INF] from='osd.7 [v2:172.21.15.49:6826/2055654531,v1:172.21.15.49:6827/2055654531]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-02-22T22:24:54.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:54 smithi195 bash[18068]: cluster 2024-02-22T22:24:53.437214+0000 mgr.smithi049.pzczis (mgr.14180) 126 : cluster [DBG] pgmap v109: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-22T22:24:54.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:54 smithi195 bash[18068]: audit 2024-02-22T22:24:53.738308+0000 mon.smithi049 (mon.0) 548 : audit [INF] from='osd.7 [v2:172.21.15.49:6826/2055654531,v1:172.21.15.49:6827/2055654531]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-02-22T22:24:55.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:55 smithi049 bash[14150]: audit 2024-02-22T22:24:54.495398+0000 mon.smithi049 (mon.0) 549 : audit [INF] from='osd.7 [v2:172.21.15.49:6826/2055654531,v1:172.21.15.49:6827/2055654531]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-02-22T22:24:55.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:55 smithi049 bash[14150]: cluster 2024-02-22T22:24:54.495459+0000 mon.smithi049 (mon.0) 550 : cluster [DBG] osdmap e38: 8 total, 7 up, 8 in 2024-02-22T22:24:55.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:55 smithi049 bash[14150]: audit 2024-02-22T22:24:54.495912+0000 mon.smithi049 (mon.0) 551 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:55.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:55 smithi049 bash[14150]: audit 2024-02-22T22:24:54.496578+0000 mon.smithi049 (mon.0) 552 : audit [INF] from='osd.7 [v2:172.21.15.49:6826/2055654531,v1:172.21.15.49:6827/2055654531]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi049", "root=default"]}]: dispatch 2024-02-22T22:24:55.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:55 smithi195 bash[18068]: audit 2024-02-22T22:24:54.495398+0000 mon.smithi049 (mon.0) 549 : audit [INF] from='osd.7 [v2:172.21.15.49:6826/2055654531,v1:172.21.15.49:6827/2055654531]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-02-22T22:24:55.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:55 smithi195 bash[18068]: cluster 2024-02-22T22:24:54.495459+0000 mon.smithi049 (mon.0) 550 : cluster [DBG] osdmap e38: 8 total, 7 up, 8 in 2024-02-22T22:24:55.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:55 smithi195 bash[18068]: audit 2024-02-22T22:24:54.495912+0000 mon.smithi049 (mon.0) 551 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:55.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:55 smithi195 bash[18068]: audit 2024-02-22T22:24:54.496578+0000 mon.smithi049 (mon.0) 552 : audit [INF] from='osd.7 [v2:172.21.15.49:6826/2055654531,v1:172.21.15.49:6827/2055654531]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi049", "root=default"]}]: dispatch 2024-02-22T22:24:56.421 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:24:56.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:56 smithi195 bash[18068]: cluster 2024-02-22T22:24:55.437855+0000 mgr.smithi049.pzczis (mgr.14180) 127 : cluster [DBG] pgmap v111: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-22T22:24:56.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:56 smithi195 bash[18068]: audit 2024-02-22T22:24:55.500428+0000 mon.smithi049 (mon.0) 553 : audit [INF] from='osd.7 [v2:172.21.15.49:6826/2055654531,v1:172.21.15.49:6827/2055654531]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi049", "root=default"]}]': finished 2024-02-22T22:24:56.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:56 smithi195 bash[18068]: cluster 2024-02-22T22:24:55.500693+0000 mon.smithi049 (mon.0) 554 : cluster [DBG] osdmap e39: 8 total, 7 up, 8 in 2024-02-22T22:24:56.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:56 smithi195 bash[18068]: audit 2024-02-22T22:24:55.500923+0000 mon.smithi049 (mon.0) 555 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:56.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:56 smithi195 bash[18068]: audit 2024-02-22T22:24:55.506807+0000 mon.smithi049 (mon.0) 556 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:56.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:56 smithi195 bash[18068]: audit 2024-02-22T22:24:56.419482+0000 mon.smithi049 (mon.0) 557 : audit [DBG] from='client.? 172.21.15.49:0/2613144927' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:24:56.862 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:56 smithi049 bash[14150]: cluster 2024-02-22T22:24:55.437855+0000 mgr.smithi049.pzczis (mgr.14180) 127 : cluster [DBG] pgmap v111: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-22T22:24:56.862 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:56 smithi049 bash[14150]: audit 2024-02-22T22:24:55.500428+0000 mon.smithi049 (mon.0) 553 : audit [INF] from='osd.7 [v2:172.21.15.49:6826/2055654531,v1:172.21.15.49:6827/2055654531]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi049", "root=default"]}]': finished 2024-02-22T22:24:56.862 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:56 smithi049 bash[14150]: cluster 2024-02-22T22:24:55.500693+0000 mon.smithi049 (mon.0) 554 : cluster [DBG] osdmap e39: 8 total, 7 up, 8 in 2024-02-22T22:24:56.862 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:56 smithi049 bash[14150]: audit 2024-02-22T22:24:55.500923+0000 mon.smithi049 (mon.0) 555 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:56.862 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:56 smithi049 bash[14150]: audit 2024-02-22T22:24:55.506807+0000 mon.smithi049 (mon.0) 556 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:56.862 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:56 smithi049 bash[14150]: audit 2024-02-22T22:24:56.419482+0000 mon.smithi049 (mon.0) 557 : audit [DBG] from='client.? 172.21.15.49:0/2613144927' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:24:57.386 INFO:teuthology.orchestra.run.smithi049.stdout:{"epoch":39,"num_osds":8,"num_up_osds":7,"osd_up_since":1708640689,"num_in_osds":8,"osd_in_since":1708640640,"num_remapped_pgs":0} 2024-02-22T22:24:57.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:57 smithi049 bash[14150]: cluster 2024-02-22T22:24:54.734267+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-22T22:24:57.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:57 smithi049 bash[14150]: cluster 2024-02-22T22:24:54.734363+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-22T22:24:57.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:57 smithi049 bash[14150]: cluster 2024-02-22T22:24:56.508628+0000 mon.smithi049 (mon.0) 558 : cluster [INF] osd.7 [v2:172.21.15.49:6826/2055654531,v1:172.21.15.49:6827/2055654531] boot 2024-02-22T22:24:57.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:57 smithi049 bash[14150]: cluster 2024-02-22T22:24:56.508710+0000 mon.smithi049 (mon.0) 559 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-02-22T22:24:57.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:57 smithi049 bash[14150]: audit 2024-02-22T22:24:56.509774+0000 mon.smithi049 (mon.0) 560 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:57.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:57 smithi049 bash[14150]: cluster 2024-02-22T22:24:57.405406+0000 mon.smithi049 (mon.0) 561 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-02-22T22:24:57.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:57 smithi195 bash[18068]: cluster 2024-02-22T22:24:54.734267+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-22T22:24:57.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:57 smithi195 bash[18068]: cluster 2024-02-22T22:24:54.734363+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-22T22:24:57.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:57 smithi195 bash[18068]: cluster 2024-02-22T22:24:56.508628+0000 mon.smithi049 (mon.0) 558 : cluster [INF] osd.7 [v2:172.21.15.49:6826/2055654531,v1:172.21.15.49:6827/2055654531] boot 2024-02-22T22:24:57.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:57 smithi195 bash[18068]: cluster 2024-02-22T22:24:56.508710+0000 mon.smithi049 (mon.0) 559 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-02-22T22:24:57.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:57 smithi195 bash[18068]: audit 2024-02-22T22:24:56.509774+0000 mon.smithi049 (mon.0) 560 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-22T22:24:57.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:57 smithi195 bash[18068]: cluster 2024-02-22T22:24:57.405406+0000 mon.smithi049 (mon.0) 561 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-02-22T22:24:58.387 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-22T22:24:58.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:58 smithi049 bash[14150]: cluster 2024-02-22T22:24:57.438467+0000 mgr.smithi049.pzczis (mgr.14180) 128 : cluster [DBG] pgmap v115: 1 pgs: 1 peering; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-22T22:24:58.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:58 smithi049 bash[14150]: audit 2024-02-22T22:24:57.956637+0000 mon.smithi049 (mon.0) 562 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:24:58.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:58 smithi049 bash[14150]: audit 2024-02-22T22:24:57.961159+0000 mon.smithi049 (mon.0) 563 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:24:58.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:24:58 smithi049 bash[14150]: cluster 2024-02-22T22:24:58.412951+0000 mon.smithi049 (mon.0) 564 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-02-22T22:24:58.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:58 smithi195 bash[18068]: cluster 2024-02-22T22:24:57.438467+0000 mgr.smithi049.pzczis (mgr.14180) 128 : cluster [DBG] pgmap v115: 1 pgs: 1 peering; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-22T22:24:58.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:58 smithi195 bash[18068]: audit 2024-02-22T22:24:57.956637+0000 mon.smithi049 (mon.0) 562 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:24:58.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:58 smithi195 bash[18068]: audit 2024-02-22T22:24:57.961159+0000 mon.smithi049 (mon.0) 563 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:24:58.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:24:58 smithi195 bash[18068]: cluster 2024-02-22T22:24:58.412951+0000 mon.smithi049 (mon.0) 564 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-02-22T22:25:00.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:00 smithi049 bash[14150]: cluster 2024-02-22T22:24:59.439010+0000 mgr.smithi049.pzczis (mgr.14180) 129 : cluster [DBG] pgmap v117: 1 pgs: 1 peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:00.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:00 smithi195 bash[18068]: cluster 2024-02-22T22:24:59.439010+0000 mgr.smithi049.pzczis (mgr.14180) 129 : cluster [DBG] pgmap v117: 1 pgs: 1 peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:01.395 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:25:01.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:01 smithi049 bash[14150]: audit 2024-02-22T22:25:01.394076+0000 mon.smithi049 (mon.0) 565 : audit [DBG] from='client.? 172.21.15.49:0/3550378887' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:25:01.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:01 smithi195 bash[18068]: audit 2024-02-22T22:25:01.394076+0000 mon.smithi049 (mon.0) 565 : audit [DBG] from='client.? 172.21.15.49:0/3550378887' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-22T22:25:02.175 INFO:teuthology.orchestra.run.smithi049.stdout:{"epoch":42,"num_osds":8,"num_up_osds":8,"osd_up_since":1708640696,"num_in_osds":8,"osd_in_since":1708640640,"num_remapped_pgs":0} 2024-02-22T22:25:02.176 INFO:tasks.cephadm:Setting up client nodes... 2024-02-22T22:25:02.176 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-02-22T22:25:02.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:02 smithi049 bash[14150]: cluster 2024-02-22T22:25:01.439587+0000 mgr.smithi049.pzczis (mgr.14180) 130 : cluster [DBG] pgmap v118: 1 pgs: 1 peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:02.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:02 smithi195 bash[18068]: cluster 2024-02-22T22:25:01.439587+0000 mgr.smithi049.pzczis (mgr.14180) 130 : cluster [DBG] pgmap v118: 1 pgs: 1 peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:04.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:04 smithi049 bash[14150]: audit 2024-02-22T22:25:03.426528+0000 mon.smithi049 (mon.0) 566 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:25:04.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:04 smithi049 bash[14150]: cluster 2024-02-22T22:25:03.439951+0000 mgr.smithi049.pzczis (mgr.14180) 131 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:04.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:04 smithi049 bash[14150]: audit 2024-02-22T22:25:03.770411+0000 mon.smithi049 (mon.0) 567 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:25:04.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:04 smithi195 bash[18068]: audit 2024-02-22T22:25:03.426528+0000 mon.smithi049 (mon.0) 566 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:25:04.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:04 smithi195 bash[18068]: cluster 2024-02-22T22:25:03.439951+0000 mgr.smithi049.pzczis (mgr.14180) 131 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:04.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:04 smithi195 bash[18068]: audit 2024-02-22T22:25:03.770411+0000 mon.smithi049 (mon.0) 567 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:25:05.293 INFO:teuthology.orchestra.run.smithi049.stdout:[client.0] 2024-02-22T22:25:05.293 INFO:teuthology.orchestra.run.smithi049.stdout: key = AQDByddlAgIhERAAPuOzGTJxS224Sl0FNU9AiA== 2024-02-22T22:25:05.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:05 smithi049 bash[14150]: audit 2024-02-22T22:25:05.287120+0000 mon.smithi049 (mon.0) 568 : audit [INF] from='client.? 172.21.15.49:0/3710639974' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-22T22:25:05.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:05 smithi049 bash[14150]: audit 2024-02-22T22:25:05.291923+0000 mon.smithi049 (mon.0) 569 : audit [INF] from='client.? 172.21.15.49:0/3710639974' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-02-22T22:25:05.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:05 smithi195 bash[18068]: audit 2024-02-22T22:25:05.287120+0000 mon.smithi049 (mon.0) 568 : audit [INF] from='client.? 172.21.15.49:0/3710639974' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-22T22:25:05.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:05 smithi195 bash[18068]: audit 2024-02-22T22:25:05.291923+0000 mon.smithi049 (mon.0) 569 : audit [INF] from='client.? 172.21.15.49:0/3710639974' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-02-22T22:25:06.025 DEBUG:teuthology.orchestra.run.smithi049:> set -ex 2024-02-22T22:25:06.025 DEBUG:teuthology.orchestra.run.smithi049:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2024-02-22T22:25:06.025 DEBUG:teuthology.orchestra.run.smithi049:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2024-02-22T22:25:06.053 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-02-22T22:25:06.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:06 smithi195 bash[18068]: cluster 2024-02-22T22:25:05.440422+0000 mgr.smithi049.pzczis (mgr.14180) 132 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:06.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:06 smithi049 bash[14150]: cluster 2024-02-22T22:25:05.440422+0000 mgr.smithi049.pzczis (mgr.14180) 132 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:08.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:08 smithi195 bash[18068]: cluster 2024-02-22T22:25:07.441071+0000 mgr.smithi049.pzczis (mgr.14180) 133 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:08.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:08 smithi049 bash[14150]: cluster 2024-02-22T22:25:07.441071+0000 mgr.smithi049.pzczis (mgr.14180) 133 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:10.133 INFO:teuthology.orchestra.run.smithi195.stdout:[client.1] 2024-02-22T22:25:10.133 INFO:teuthology.orchestra.run.smithi195.stdout: key = AQDGyddlcb59BxAAzNHafM5J3tyy0+GZMekpfQ== 2024-02-22T22:25:10.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:10 smithi195 bash[18068]: cluster 2024-02-22T22:25:09.441665+0000 mgr.smithi049.pzczis (mgr.14180) 134 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:10.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:10 smithi195 bash[18068]: audit 2024-02-22T22:25:10.122171+0000 mon.smithi195 (mon.1) 17 : audit [INF] from='client.? 172.21.15.195:0/341713312' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-22T22:25:10.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:10 smithi195 bash[18068]: audit 2024-02-22T22:25:10.125242+0000 mon.smithi049 (mon.0) 570 : audit [INF] from='client.? ' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-22T22:25:10.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:10 smithi195 bash[18068]: audit 2024-02-22T22:25:10.131203+0000 mon.smithi049 (mon.0) 571 : audit [INF] from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-02-22T22:25:10.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:10 smithi049 bash[14150]: cluster 2024-02-22T22:25:09.441665+0000 mgr.smithi049.pzczis (mgr.14180) 134 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:10.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:10 smithi049 bash[14150]: audit 2024-02-22T22:25:10.122171+0000 mon.smithi195 (mon.1) 17 : audit [INF] from='client.? 172.21.15.195:0/341713312' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-22T22:25:10.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:10 smithi049 bash[14150]: audit 2024-02-22T22:25:10.125242+0000 mon.smithi049 (mon.0) 570 : audit [INF] from='client.? ' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-22T22:25:10.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:10 smithi049 bash[14150]: audit 2024-02-22T22:25:10.131203+0000 mon.smithi049 (mon.0) 571 : audit [INF] from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-02-22T22:25:11.511 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-02-22T22:25:11.511 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2024-02-22T22:25:11.511 DEBUG:teuthology.orchestra.run.smithi195:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2024-02-22T22:25:11.529 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd dump --format=json 2024-02-22T22:25:12.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:12 smithi195 bash[18068]: cluster 2024-02-22T22:25:11.442376+0000 mgr.smithi049.pzczis (mgr.14180) 135 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:12.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:12 smithi049 bash[14150]: cluster 2024-02-22T22:25:11.442376+0000 mgr.smithi049.pzczis (mgr.14180) 135 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:14.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:14 smithi195 bash[18068]: cluster 2024-02-22T22:25:13.442864+0000 mgr.smithi049.pzczis (mgr.14180) 136 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:14.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:14 smithi195 bash[18068]: audit 2024-02-22T22:25:14.034104+0000 mon.smithi049 (mon.0) 572 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:25:14.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:14 smithi195 bash[18068]: audit 2024-02-22T22:25:14.334060+0000 mon.smithi049 (mon.0) 573 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:25:14.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:14 smithi195 bash[18068]: audit 2024-02-22T22:25:14.335666+0000 mon.smithi049 (mon.0) 574 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:25:14.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:14 smithi195 bash[18068]: audit 2024-02-22T22:25:14.336897+0000 mon.smithi049 (mon.0) 575 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:25:14.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:14 smithi195 bash[18068]: audit 2024-02-22T22:25:14.337904+0000 mon.smithi049 (mon.0) 576 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:25:14.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:14 smithi195 bash[18068]: audit 2024-02-22T22:25:14.343858+0000 mon.smithi049 (mon.0) 577 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:25:14.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:14 smithi049 bash[14150]: cluster 2024-02-22T22:25:13.442864+0000 mgr.smithi049.pzczis (mgr.14180) 136 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:14.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:14 smithi049 bash[14150]: audit 2024-02-22T22:25:14.034104+0000 mon.smithi049 (mon.0) 572 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:25:14.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:14 smithi049 bash[14150]: audit 2024-02-22T22:25:14.334060+0000 mon.smithi049 (mon.0) 573 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:25:14.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:14 smithi049 bash[14150]: audit 2024-02-22T22:25:14.335666+0000 mon.smithi049 (mon.0) 574 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:25:14.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:14 smithi049 bash[14150]: audit 2024-02-22T22:25:14.336897+0000 mon.smithi049 (mon.0) 575 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:25:14.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:14 smithi049 bash[14150]: audit 2024-02-22T22:25:14.337904+0000 mon.smithi049 (mon.0) 576 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:25:14.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:14 smithi049 bash[14150]: audit 2024-02-22T22:25:14.343858+0000 mon.smithi049 (mon.0) 577 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:25:15.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:15 smithi195 bash[18068]: cephadm 2024-02-22T22:25:14.022032+0000 mgr.smithi049.pzczis (mgr.14180) 137 : cephadm [INF] Detected new or changed devices on smithi049 2024-02-22T22:25:15.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:15 smithi195 bash[18068]: cephadm 2024-02-22T22:25:14.338777+0000 mgr.smithi049.pzczis (mgr.14180) 138 : cephadm [INF] Adjusting osd_memory_target on smithi049 to 3260M 2024-02-22T22:25:15.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:15 smithi195 bash[18068]: audit 2024-02-22T22:25:14.932518+0000 mon.smithi049 (mon.0) 578 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:25:15.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:15 smithi195 bash[18068]: audit 2024-02-22T22:25:15.227996+0000 mon.smithi049 (mon.0) 579 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:25:15.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:15 smithi195 bash[18068]: audit 2024-02-22T22:25:15.229849+0000 mon.smithi049 (mon.0) 580 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:25:15.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:15 smithi195 bash[18068]: audit 2024-02-22T22:25:15.231600+0000 mon.smithi049 (mon.0) 581 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:25:15.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:15 smithi195 bash[18068]: audit 2024-02-22T22:25:15.233139+0000 mon.smithi049 (mon.0) 582 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:25:15.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:15 smithi195 bash[18068]: audit 2024-02-22T22:25:15.241150+0000 mon.smithi049 (mon.0) 583 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:25:15.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:15 smithi195 bash[18068]: audit 2024-02-22T22:25:15.242891+0000 mon.smithi049 (mon.0) 584 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:25:15.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:15 smithi195 bash[18068]: audit 2024-02-22T22:25:15.244584+0000 mon.smithi049 (mon.0) 585 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:25:15.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:15 smithi195 bash[18068]: audit 2024-02-22T22:25:15.251528+0000 mon.smithi049 (mon.0) 586 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:25:15.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:15 smithi195 bash[18068]: audit 2024-02-22T22:25:15.258025+0000 mon.smithi049 (mon.0) 587 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:25:15.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:15 smithi195 bash[18068]: audit 2024-02-22T22:25:15.264391+0000 mon.smithi049 (mon.0) 588 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-22T22:25:15.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:15 smithi195 bash[18068]: audit 2024-02-22T22:25:15.266941+0000 mon.smithi049 (mon.0) 589 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-22T22:25:15.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:15 smithi195 bash[18068]: audit 2024-02-22T22:25:15.267284+0000 mon.smithi049 (mon.0) 590 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:25:15.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:15 smithi195 bash[18068]: audit 2024-02-22T22:25:15.268204+0000 mon.smithi049 (mon.0) 591 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:25:15.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:15 smithi049 bash[14150]: cephadm 2024-02-22T22:25:14.022032+0000 mgr.smithi049.pzczis (mgr.14180) 137 : cephadm [INF] Detected new or changed devices on smithi049 2024-02-22T22:25:15.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:15 smithi049 bash[14150]: cephadm 2024-02-22T22:25:14.338777+0000 mgr.smithi049.pzczis (mgr.14180) 138 : cephadm [INF] Adjusting osd_memory_target on smithi049 to 3260M 2024-02-22T22:25:15.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:15 smithi049 bash[14150]: audit 2024-02-22T22:25:14.932518+0000 mon.smithi049 (mon.0) 578 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:25:15.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:15 smithi049 bash[14150]: audit 2024-02-22T22:25:15.227996+0000 mon.smithi049 (mon.0) 579 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:25:15.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:15 smithi049 bash[14150]: audit 2024-02-22T22:25:15.229849+0000 mon.smithi049 (mon.0) 580 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:25:15.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:15 smithi049 bash[14150]: audit 2024-02-22T22:25:15.231600+0000 mon.smithi049 (mon.0) 581 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:25:15.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:15 smithi049 bash[14150]: audit 2024-02-22T22:25:15.233139+0000 mon.smithi049 (mon.0) 582 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:25:15.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:15 smithi049 bash[14150]: audit 2024-02-22T22:25:15.241150+0000 mon.smithi049 (mon.0) 583 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:25:15.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:15 smithi049 bash[14150]: audit 2024-02-22T22:25:15.242891+0000 mon.smithi049 (mon.0) 584 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:25:15.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:15 smithi049 bash[14150]: audit 2024-02-22T22:25:15.244584+0000 mon.smithi049 (mon.0) 585 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:25:15.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:15 smithi049 bash[14150]: audit 2024-02-22T22:25:15.251528+0000 mon.smithi049 (mon.0) 586 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:25:15.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:15 smithi049 bash[14150]: audit 2024-02-22T22:25:15.258025+0000 mon.smithi049 (mon.0) 587 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:25:15.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:15 smithi049 bash[14150]: audit 2024-02-22T22:25:15.264391+0000 mon.smithi049 (mon.0) 588 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-22T22:25:15.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:15 smithi049 bash[14150]: audit 2024-02-22T22:25:15.266941+0000 mon.smithi049 (mon.0) 589 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-22T22:25:15.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:15 smithi049 bash[14150]: audit 2024-02-22T22:25:15.267284+0000 mon.smithi049 (mon.0) 590 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:25:15.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:15 smithi049 bash[14150]: audit 2024-02-22T22:25:15.268204+0000 mon.smithi049 (mon.0) 591 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:25:16.330 INFO:teuthology.orchestra.run.smithi049.stderr:Inferring config /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/mon.smithi049/config 2024-02-22T22:25:16.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:16 smithi049 bash[14150]: cephadm 2024-02-22T22:25:14.919606+0000 mgr.smithi049.pzczis (mgr.14180) 139 : cephadm [INF] Detected new or changed devices on smithi195 2024-02-22T22:25:16.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:16 smithi049 bash[14150]: cephadm 2024-02-22T22:25:15.234170+0000 mgr.smithi049.pzczis (mgr.14180) 140 : cephadm [INF] Adjusting osd_memory_target on smithi195 to 4028M 2024-02-22T22:25:16.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:16 smithi049 bash[14150]: cluster 2024-02-22T22:25:15.443345+0000 mgr.smithi049.pzczis (mgr.14180) 141 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:16.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:16 smithi195 bash[18068]: cephadm 2024-02-22T22:25:14.919606+0000 mgr.smithi049.pzczis (mgr.14180) 139 : cephadm [INF] Detected new or changed devices on smithi195 2024-02-22T22:25:16.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:16 smithi195 bash[18068]: cephadm 2024-02-22T22:25:15.234170+0000 mgr.smithi049.pzczis (mgr.14180) 140 : cephadm [INF] Adjusting osd_memory_target on smithi195 to 4028M 2024-02-22T22:25:16.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:16 smithi195 bash[18068]: cluster 2024-02-22T22:25:15.443345+0000 mgr.smithi049.pzczis (mgr.14180) 141 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:18.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:18 smithi195 bash[18068]: cluster 2024-02-22T22:25:17.444017+0000 mgr.smithi049.pzczis (mgr.14180) 142 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:18.849 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:18 smithi049 bash[14150]: cluster 2024-02-22T22:25:17.444017+0000 mgr.smithi049.pzczis (mgr.14180) 142 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:19.227 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:25:19.227 INFO:teuthology.orchestra.run.smithi049.stdout:{"epoch":42,"fsid":"605df99c-d1d0-11ee-95c0-87774f69a715","created":"2024-02-22T22:19:55.420499+0000","modified":"2024-02-22T22:24:58.403079+0000","last_up_change":"2024-02-22T22:24:56.502549+0000","last_in_change":"2024-02-22T22:24:00.423887+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":17,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2024-02-22T22:24:34.569991+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"27","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr_devicehealth":{}}}],"osds":[{"osd":0,"uuid":"41e842e7-8891-410a-b83d-8d6428128203","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":40,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6800","nonce":406287926},{"type":"v1","addr":"172.21.15.195:6801","nonce":406287926}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6802","nonce":406287926},{"type":"v1","addr":"172.21.15.195:6803","nonce":406287926}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6806","nonce":406287926},{"type":"v1","addr":"172.21.15.195:6807","nonce":406287926}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6804","nonce":406287926},{"type":"v1","addr":"172.21.15.195:6805","nonce":406287926}]},"public_addr":"172.21.15.195:6801/406287926","cluster_addr":"172.21.15.195:6803/406287926","heartbeat_back_addr":"172.21.15.195:6807/406287926","heartbeat_front_addr":"172.21.15.195:6805/406287926","state":["exists","up"]},{"osd":1,"uuid":"4d964953-7129-4981-981a-db08d1a71033","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":32,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6802","nonce":1635209479},{"type":"v1","addr":"172.21.15.49:6803","nonce":1635209479}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6804","nonce":1635209479},{"type":"v1","addr":"172.21.15.49:6805","nonce":1635209479}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6808","nonce":1635209479},{"type":"v1","addr":"172.21.15.49:6809","nonce":1635209479}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6806","nonce":1635209479},{"type":"v1","addr":"172.21.15.49:6807","nonce":1635209479}]},"public_addr":"172.21.15.49:6803/1635209479","cluster_addr":"172.21.15.49:6805/1635209479","heartbeat_back_addr":"172.21.15.49:6809/1635209479","heartbeat_front_addr":"172.21.15.49:6807/1635209479","state":["exists","up"]},{"osd":2,"uuid":"39a8018e-d1c7-4144-8350-34a533c60036","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6808","nonce":3835375383},{"type":"v1","addr":"172.21.15.195:6809","nonce":3835375383}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6810","nonce":3835375383},{"type":"v1","addr":"172.21.15.195:6811","nonce":3835375383}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6814","nonce":3835375383},{"type":"v1","addr":"172.21.15.195:6815","nonce":3835375383}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6812","nonce":3835375383},{"type":"v1","addr":"172.21.15.195:6813","nonce":3835375383}]},"public_addr":"172.21.15.195:6809/3835375383","cluster_addr":"172.21.15.195:6811/3835375383","heartbeat_back_addr":"172.21.15.195:6815/3835375383","heartbeat_front_addr":"172.21.15.195:6813/3835375383","state":["exists","up"]},{"osd":3,"uuid":"189ce9d1-71a2-4554-94f5-7c9cc21aefb2","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6810","nonce":451529286},{"type":"v1","addr":"172.21.15.49:6811","nonce":451529286}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6812","nonce":451529286},{"type":"v1","addr":"172.21.15.49:6813","nonce":451529286}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6816","nonce":451529286},{"type":"v1","addr":"172.21.15.49:6817","nonce":451529286}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6814","nonce":451529286},{"type":"v1","addr":"172.21.15.49:6815","nonce":451529286}]},"public_addr":"172.21.15.49:6811/451529286","cluster_addr":"172.21.15.49:6813/451529286","heartbeat_back_addr":"172.21.15.49:6817/451529286","heartbeat_front_addr":"172.21.15.49:6815/451529286","state":["exists","up"]},{"osd":4,"uuid":"c91ef420-a472-4645-9275-a309041de606","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.195:6816","nonce":913072377},{"type":"v1","addr":"172.21.15.195:6817","nonce":913072377}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6818","nonce":913072377},{"type":"v1","addr":"172.21.15.195:6819","nonce":913072377}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6822","nonce":913072377},{"type":"v1","addr":"172.21.15.195:6823","nonce":913072377}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6820","nonce":913072377},{"type":"v1","addr":"172.21.15.195:6821","nonce":913072377}]},"public_addr":"172.21.15.195:6817/913072377","cluster_addr":"172.21.15.195:6819/913072377","heartbeat_back_addr":"172.21.15.195:6823/913072377","heartbeat_front_addr":"172.21.15.195:6821/913072377","state":["exists","up"]},{"osd":5,"uuid":"f2543b02-b061-4234-8f1c-1d42ffcd64f6","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":36,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6818","nonce":987390570},{"type":"v1","addr":"172.21.15.49:6819","nonce":987390570}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6820","nonce":987390570},{"type":"v1","addr":"172.21.15.49:6821","nonce":987390570}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6824","nonce":987390570},{"type":"v1","addr":"172.21.15.49:6825","nonce":987390570}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6822","nonce":987390570},{"type":"v1","addr":"172.21.15.49:6823","nonce":987390570}]},"public_addr":"172.21.15.49:6819/987390570","cluster_addr":"172.21.15.49:6821/987390570","heartbeat_back_addr":"172.21.15.49:6825/987390570","heartbeat_front_addr":"172.21.15.49:6823/987390570","state":["exists","up"]},{"osd":6,"uuid":"4d14f351-5019-428e-86cf-8ef4219946eb","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6824","nonce":3220905754},{"type":"v1","addr":"172.21.15.195:6825","nonce":3220905754}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6826","nonce":3220905754},{"type":"v1","addr":"172.21.15.195:6827","nonce":3220905754}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6830","nonce":3220905754},{"type":"v1","addr":"172.21.15.195:6831","nonce":3220905754}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6828","nonce":3220905754},{"type":"v1","addr":"172.21.15.195:6829","nonce":3220905754}]},"public_addr":"172.21.15.195:6825/3220905754","cluster_addr":"172.21.15.195:6827/3220905754","heartbeat_back_addr":"172.21.15.195:6831/3220905754","heartbeat_front_addr":"172.21.15.195:6829/3220905754","state":["exists","up"]},{"osd":7,"uuid":"fede6af6-732c-42ef-b782-19d0e203d793","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":40,"up_thru":41,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6826","nonce":2055654531},{"type":"v1","addr":"172.21.15.49:6827","nonce":2055654531}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6828","nonce":2055654531},{"type":"v1","addr":"172.21.15.49:6829","nonce":2055654531}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6832","nonce":2055654531},{"type":"v1","addr":"172.21.15.49:6833","nonce":2055654531}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6830","nonce":2055654531},{"type":"v1","addr":"172.21.15.49:6831","nonce":2055654531}]},"public_addr":"172.21.15.49:6827/2055654531","cluster_addr":"172.21.15.49:6829/2055654531","heartbeat_back_addr":"172.21.15.49:6833/2055654531","heartbeat_front_addr":"172.21.15.49:6831/2055654531","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-22T22:24:23.032364+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-22T22:24:32.743614+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-22T22:24:28.294894+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-22T22:24:40.021456+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-22T22:24:34.388857+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-22T22:24:47.935016+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-22T22:24:39.057463+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-22T22:24:54.734369+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.49:6801/3283629490":"2024-02-23T22:22:07.392571+0000","172.21.15.49:6800/3283629490":"2024-02-23T22:22:07.392571+0000","172.21.15.49:0/2117719327":"2024-02-23T22:22:07.392571+0000","172.21.15.49:0/1421532408":"2024-02-23T22:22:07.392571+0000","172.21.15.49:0/3185739747":"2024-02-23T22:21:06.245212+0000","172.21.15.49:6800/1027053716":"2024-02-23T22:21:06.245212+0000","172.21.15.49:0/1812574208":"2024-02-23T22:20:24.324568+0000","172.21.15.49:0/673717231":"2024-02-23T22:21:06.245212+0000","172.21.15.49:6801/1027053716":"2024-02-23T22:21:06.245212+0000","172.21.15.49:6800/3925189488":"2024-02-23T22:20:24.324568+0000","172.21.15.49:0/2292444175":"2024-02-23T22:20:24.324568+0000","172.21.15.49:6801/3925189488":"2024-02-23T22:20:24.324568+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-22T22:25:19.613 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:19 smithi049 bash[14150]: audit 2024-02-22T22:25:19.224935+0000 mon.smithi049 (mon.0) 592 : audit [DBG] from='client.? 172.21.15.49:0/2943725442' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-22T22:25:19.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:19 smithi195 bash[18068]: audit 2024-02-22T22:25:19.224935+0000 mon.smithi049 (mon.0) 592 : audit [DBG] from='client.? 172.21.15.49:0/2943725442' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-22T22:25:20.321 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': 'device_health_metrics', 'create_time': '2024-02-22T22:24:34.569991+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '27', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr_devicehealth': {}}}] 2024-02-22T22:25:20.322 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd pool get device_health_metrics pg_num 2024-02-22T22:25:20.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:20 smithi049 bash[14150]: cluster 2024-02-22T22:25:19.444737+0000 mgr.smithi049.pzczis (mgr.14180) 143 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:20.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:20 smithi195 bash[18068]: cluster 2024-02-22T22:25:19.444737+0000 mgr.smithi049.pzczis (mgr.14180) 143 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:22.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:22 smithi049 bash[14150]: cluster 2024-02-22T22:25:21.445264+0000 mgr.smithi049.pzczis (mgr.14180) 144 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:22.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:22 smithi195 bash[18068]: cluster 2024-02-22T22:25:21.445264+0000 mgr.smithi049.pzczis (mgr.14180) 144 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:24.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:24 smithi195 bash[18068]: cluster 2024-02-22T22:25:23.445838+0000 mgr.smithi049.pzczis (mgr.14180) 145 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:24.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:24 smithi049 bash[14150]: cluster 2024-02-22T22:25:23.445838+0000 mgr.smithi049.pzczis (mgr.14180) 145 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:26.111 INFO:teuthology.orchestra.run.smithi049.stderr:Inferring config /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/mon.smithi049/config 2024-02-22T22:25:26.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:26 smithi195 bash[18068]: cluster 2024-02-22T22:25:25.446423+0000 mgr.smithi049.pzczis (mgr.14180) 146 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:26.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:26 smithi049 bash[14150]: cluster 2024-02-22T22:25:25.446423+0000 mgr.smithi049.pzczis (mgr.14180) 146 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:28.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:28 smithi195 bash[18068]: cluster 2024-02-22T22:25:27.446884+0000 mgr.smithi049.pzczis (mgr.14180) 147 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:28.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:28 smithi049 bash[14150]: cluster 2024-02-22T22:25:27.446884+0000 mgr.smithi049.pzczis (mgr.14180) 147 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:29.021 INFO:teuthology.orchestra.run.smithi049.stdout:pg_num: 1 2024-02-22T22:25:29.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:29 smithi049 bash[14150]: audit 2024-02-22T22:25:29.019919+0000 mon.smithi049 (mon.0) 593 : audit [DBG] from='client.? 172.21.15.49:0/1356804878' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": "device_health_metrics", "var": "pg_num"}]: dispatch 2024-02-22T22:25:29.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:29 smithi195 bash[18068]: audit 2024-02-22T22:25:29.019919+0000 mon.smithi049 (mon.0) 593 : audit [DBG] from='client.? 172.21.15.49:0/1356804878' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": "device_health_metrics", "var": "pg_num"}]: dispatch 2024-02-22T22:25:30.262 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-02-22T22:25:30.262 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-02-22T22:25:30.262 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph mgr dump --format=json 2024-02-22T22:25:30.767 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:30 smithi195 bash[18068]: cluster 2024-02-22T22:25:29.447232+0000 mgr.smithi049.pzczis (mgr.14180) 148 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:30.802 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:30 smithi049 bash[14150]: cluster 2024-02-22T22:25:29.447232+0000 mgr.smithi049.pzczis (mgr.14180) 148 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:32.779 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:32 smithi195 bash[18068]: cluster 2024-02-22T22:25:31.447773+0000 mgr.smithi049.pzczis (mgr.14180) 149 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:32.810 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:32 smithi049 bash[14150]: cluster 2024-02-22T22:25:31.447773+0000 mgr.smithi049.pzczis (mgr.14180) 149 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:34.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:34 smithi195 bash[18068]: cluster 2024-02-22T22:25:33.448367+0000 mgr.smithi049.pzczis (mgr.14180) 150 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:34.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:34 smithi049 bash[14150]: cluster 2024-02-22T22:25:33.448367+0000 mgr.smithi049.pzczis (mgr.14180) 150 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:36.072 INFO:teuthology.orchestra.run.smithi049.stderr:Inferring config /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/mon.smithi049/config 2024-02-22T22:25:36.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:36 smithi195 bash[18068]: cluster 2024-02-22T22:25:35.448958+0000 mgr.smithi049.pzczis (mgr.14180) 151 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:36.836 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:36 smithi049 bash[14150]: cluster 2024-02-22T22:25:35.448958+0000 mgr.smithi049.pzczis (mgr.14180) 151 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:38.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:38 smithi195 bash[18068]: cluster 2024-02-22T22:25:37.449603+0000 mgr.smithi049.pzczis (mgr.14180) 152 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:38 smithi049 bash[14150]: cluster 2024-02-22T22:25:37.449603+0000 mgr.smithi049.pzczis (mgr.14180) 152 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:39.571 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:25:40.763 INFO:teuthology.orchestra.run.smithi049.stdout:{"epoch":18,"active_gid":14180,"active_name":"smithi049.pzczis","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6800","nonce":1234144685},{"type":"v1","addr":"172.21.15.49:6801","nonce":1234144685}]},"active_addr":"172.21.15.49:6801/1234144685","active_change":"2024-02-22T22:22:07.392908+0000","active_mgr_features":4540138314316775423,"available":true,"standbys":[{"gid":14198,"name":"smithi195.prtvdp","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.49:8443/","prometheus":"http://172.21.15.49:9283/"},"always_on_modules":{"nautilus":["balancer","crash","devicehealth","orchestrator_cli","progress","rbd_support","status","volumes"],"octopus":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"pacific":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"]},"last_failure_osd_epoch":4,"active_clients":[{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.49:0","nonce":3174412395}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.49:0","nonce":3053994444}]}]} 2024-02-22T22:25:40.767 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-02-22T22:25:40.767 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-02-22T22:25:40.767 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd dump --format=json 2024-02-22T22:25:40.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:40 smithi195 bash[18068]: cluster 2024-02-22T22:25:39.450035+0000 mgr.smithi049.pzczis (mgr.14180) 153 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:40.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:40 smithi195 bash[18068]: audit 2024-02-22T22:25:39.564675+0000 mon.smithi049 (mon.0) 594 : audit [DBG] from='client.? 172.21.15.49:0/1129411780' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-02-22T22:25:40.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:40 smithi049 bash[14150]: cluster 2024-02-22T22:25:39.450035+0000 mgr.smithi049.pzczis (mgr.14180) 153 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:40.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:40 smithi049 bash[14150]: audit 2024-02-22T22:25:39.564675+0000 mon.smithi049 (mon.0) 594 : audit [DBG] from='client.? 172.21.15.49:0/1129411780' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-02-22T22:25:42.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:42 smithi049 bash[14150]: cluster 2024-02-22T22:25:41.450733+0000 mgr.smithi049.pzczis (mgr.14180) 154 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:42.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:42 smithi049 bash[14150]: audit 2024-02-22T22:25:42.153481+0000 mon.smithi049 (mon.0) 595 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:25:42.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:42 smithi195 bash[18068]: cluster 2024-02-22T22:25:41.450733+0000 mgr.smithi049.pzczis (mgr.14180) 154 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:42.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:42 smithi195 bash[18068]: audit 2024-02-22T22:25:42.153481+0000 mon.smithi049 (mon.0) 595 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:25:44.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:43 smithi049 bash[14150]: audit 2024-02-22T22:25:42.852712+0000 mon.smithi049 (mon.0) 596 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:25:44.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:43 smithi049 bash[14150]: cluster 2024-02-22T22:25:43.451348+0000 mgr.smithi049.pzczis (mgr.14180) 155 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:44.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:43 smithi195 bash[18068]: audit 2024-02-22T22:25:42.852712+0000 mon.smithi049 (mon.0) 596 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:25:44.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:43 smithi195 bash[18068]: cluster 2024-02-22T22:25:43.451348+0000 mgr.smithi049.pzczis (mgr.14180) 155 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:45.552 INFO:teuthology.orchestra.run.smithi049.stderr:Inferring config /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/mon.smithi049/config 2024-02-22T22:25:46.733 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:46 smithi049 bash[14150]: cluster 2024-02-22T22:25:45.451976+0000 mgr.smithi049.pzczis (mgr.14180) 156 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:46.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:46 smithi195 bash[18068]: cluster 2024-02-22T22:25:45.451976+0000 mgr.smithi049.pzczis (mgr.14180) 156 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:48.362 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:25:48.362 INFO:teuthology.orchestra.run.smithi049.stdout:{"epoch":42,"fsid":"605df99c-d1d0-11ee-95c0-87774f69a715","created":"2024-02-22T22:19:55.420499+0000","modified":"2024-02-22T22:24:58.403079+0000","last_up_change":"2024-02-22T22:24:56.502549+0000","last_in_change":"2024-02-22T22:24:00.423887+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":17,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2024-02-22T22:24:34.569991+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"27","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr_devicehealth":{}}}],"osds":[{"osd":0,"uuid":"41e842e7-8891-410a-b83d-8d6428128203","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":40,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6800","nonce":406287926},{"type":"v1","addr":"172.21.15.195:6801","nonce":406287926}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6802","nonce":406287926},{"type":"v1","addr":"172.21.15.195:6803","nonce":406287926}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6806","nonce":406287926},{"type":"v1","addr":"172.21.15.195:6807","nonce":406287926}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6804","nonce":406287926},{"type":"v1","addr":"172.21.15.195:6805","nonce":406287926}]},"public_addr":"172.21.15.195:6801/406287926","cluster_addr":"172.21.15.195:6803/406287926","heartbeat_back_addr":"172.21.15.195:6807/406287926","heartbeat_front_addr":"172.21.15.195:6805/406287926","state":["exists","up"]},{"osd":1,"uuid":"4d964953-7129-4981-981a-db08d1a71033","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":32,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6802","nonce":1635209479},{"type":"v1","addr":"172.21.15.49:6803","nonce":1635209479}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6804","nonce":1635209479},{"type":"v1","addr":"172.21.15.49:6805","nonce":1635209479}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6808","nonce":1635209479},{"type":"v1","addr":"172.21.15.49:6809","nonce":1635209479}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6806","nonce":1635209479},{"type":"v1","addr":"172.21.15.49:6807","nonce":1635209479}]},"public_addr":"172.21.15.49:6803/1635209479","cluster_addr":"172.21.15.49:6805/1635209479","heartbeat_back_addr":"172.21.15.49:6809/1635209479","heartbeat_front_addr":"172.21.15.49:6807/1635209479","state":["exists","up"]},{"osd":2,"uuid":"39a8018e-d1c7-4144-8350-34a533c60036","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6808","nonce":3835375383},{"type":"v1","addr":"172.21.15.195:6809","nonce":3835375383}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6810","nonce":3835375383},{"type":"v1","addr":"172.21.15.195:6811","nonce":3835375383}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6814","nonce":3835375383},{"type":"v1","addr":"172.21.15.195:6815","nonce":3835375383}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6812","nonce":3835375383},{"type":"v1","addr":"172.21.15.195:6813","nonce":3835375383}]},"public_addr":"172.21.15.195:6809/3835375383","cluster_addr":"172.21.15.195:6811/3835375383","heartbeat_back_addr":"172.21.15.195:6815/3835375383","heartbeat_front_addr":"172.21.15.195:6813/3835375383","state":["exists","up"]},{"osd":3,"uuid":"189ce9d1-71a2-4554-94f5-7c9cc21aefb2","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6810","nonce":451529286},{"type":"v1","addr":"172.21.15.49:6811","nonce":451529286}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6812","nonce":451529286},{"type":"v1","addr":"172.21.15.49:6813","nonce":451529286}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6816","nonce":451529286},{"type":"v1","addr":"172.21.15.49:6817","nonce":451529286}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6814","nonce":451529286},{"type":"v1","addr":"172.21.15.49:6815","nonce":451529286}]},"public_addr":"172.21.15.49:6811/451529286","cluster_addr":"172.21.15.49:6813/451529286","heartbeat_back_addr":"172.21.15.49:6817/451529286","heartbeat_front_addr":"172.21.15.49:6815/451529286","state":["exists","up"]},{"osd":4,"uuid":"c91ef420-a472-4645-9275-a309041de606","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.195:6816","nonce":913072377},{"type":"v1","addr":"172.21.15.195:6817","nonce":913072377}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6818","nonce":913072377},{"type":"v1","addr":"172.21.15.195:6819","nonce":913072377}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6822","nonce":913072377},{"type":"v1","addr":"172.21.15.195:6823","nonce":913072377}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6820","nonce":913072377},{"type":"v1","addr":"172.21.15.195:6821","nonce":913072377}]},"public_addr":"172.21.15.195:6817/913072377","cluster_addr":"172.21.15.195:6819/913072377","heartbeat_back_addr":"172.21.15.195:6823/913072377","heartbeat_front_addr":"172.21.15.195:6821/913072377","state":["exists","up"]},{"osd":5,"uuid":"f2543b02-b061-4234-8f1c-1d42ffcd64f6","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":36,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6818","nonce":987390570},{"type":"v1","addr":"172.21.15.49:6819","nonce":987390570}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6820","nonce":987390570},{"type":"v1","addr":"172.21.15.49:6821","nonce":987390570}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6824","nonce":987390570},{"type":"v1","addr":"172.21.15.49:6825","nonce":987390570}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6822","nonce":987390570},{"type":"v1","addr":"172.21.15.49:6823","nonce":987390570}]},"public_addr":"172.21.15.49:6819/987390570","cluster_addr":"172.21.15.49:6821/987390570","heartbeat_back_addr":"172.21.15.49:6825/987390570","heartbeat_front_addr":"172.21.15.49:6823/987390570","state":["exists","up"]},{"osd":6,"uuid":"4d14f351-5019-428e-86cf-8ef4219946eb","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6824","nonce":3220905754},{"type":"v1","addr":"172.21.15.195:6825","nonce":3220905754}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6826","nonce":3220905754},{"type":"v1","addr":"172.21.15.195:6827","nonce":3220905754}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6830","nonce":3220905754},{"type":"v1","addr":"172.21.15.195:6831","nonce":3220905754}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6828","nonce":3220905754},{"type":"v1","addr":"172.21.15.195:6829","nonce":3220905754}]},"public_addr":"172.21.15.195:6825/3220905754","cluster_addr":"172.21.15.195:6827/3220905754","heartbeat_back_addr":"172.21.15.195:6831/3220905754","heartbeat_front_addr":"172.21.15.195:6829/3220905754","state":["exists","up"]},{"osd":7,"uuid":"fede6af6-732c-42ef-b782-19d0e203d793","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":40,"up_thru":41,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6826","nonce":2055654531},{"type":"v1","addr":"172.21.15.49:6827","nonce":2055654531}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6828","nonce":2055654531},{"type":"v1","addr":"172.21.15.49:6829","nonce":2055654531}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6832","nonce":2055654531},{"type":"v1","addr":"172.21.15.49:6833","nonce":2055654531}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6830","nonce":2055654531},{"type":"v1","addr":"172.21.15.49:6831","nonce":2055654531}]},"public_addr":"172.21.15.49:6827/2055654531","cluster_addr":"172.21.15.49:6829/2055654531","heartbeat_back_addr":"172.21.15.49:6833/2055654531","heartbeat_front_addr":"172.21.15.49:6831/2055654531","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-22T22:24:23.032364+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-22T22:24:32.743614+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-22T22:24:28.294894+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-22T22:24:40.021456+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-22T22:24:34.388857+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-22T22:24:47.935016+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-22T22:24:39.057463+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-22T22:24:54.734369+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.49:6801/3283629490":"2024-02-23T22:22:07.392571+0000","172.21.15.49:6800/3283629490":"2024-02-23T22:22:07.392571+0000","172.21.15.49:0/2117719327":"2024-02-23T22:22:07.392571+0000","172.21.15.49:0/1421532408":"2024-02-23T22:22:07.392571+0000","172.21.15.49:0/3185739747":"2024-02-23T22:21:06.245212+0000","172.21.15.49:6800/1027053716":"2024-02-23T22:21:06.245212+0000","172.21.15.49:0/1812574208":"2024-02-23T22:20:24.324568+0000","172.21.15.49:0/673717231":"2024-02-23T22:21:06.245212+0000","172.21.15.49:6801/1027053716":"2024-02-23T22:21:06.245212+0000","172.21.15.49:6800/3925189488":"2024-02-23T22:20:24.324568+0000","172.21.15.49:0/2292444175":"2024-02-23T22:20:24.324568+0000","172.21.15.49:6801/3925189488":"2024-02-23T22:20:24.324568+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-22T22:25:48.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:48 smithi049 bash[14150]: cluster 2024-02-22T22:25:47.452563+0000 mgr.smithi049.pzczis (mgr.14180) 157 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:48.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:48 smithi049 bash[14150]: audit 2024-02-22T22:25:48.359503+0000 mon.smithi049 (mon.0) 597 : audit [DBG] from='client.? 172.21.15.49:0/1837511113' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-22T22:25:48.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:48 smithi195 bash[18068]: cluster 2024-02-22T22:25:47.452563+0000 mgr.smithi049.pzczis (mgr.14180) 157 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:48.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:48 smithi195 bash[18068]: audit 2024-02-22T22:25:48.359503+0000 mon.smithi049 (mon.0) 597 : audit [DBG] from='client.? 172.21.15.49:0/1837511113' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-22T22:25:49.083 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-02-22T22:25:49.083 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd dump --format=json 2024-02-22T22:25:50.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:50 smithi195 bash[18068]: cluster 2024-02-22T22:25:49.453234+0000 mgr.smithi049.pzczis (mgr.14180) 158 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:50.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:50 smithi049 bash[14150]: cluster 2024-02-22T22:25:49.453234+0000 mgr.smithi049.pzczis (mgr.14180) 158 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:52.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:52 smithi195 bash[18068]: cluster 2024-02-22T22:25:51.453819+0000 mgr.smithi049.pzczis (mgr.14180) 159 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:52.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:52 smithi049 bash[14150]: cluster 2024-02-22T22:25:51.453819+0000 mgr.smithi049.pzczis (mgr.14180) 159 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:53.880 INFO:teuthology.orchestra.run.smithi049.stderr:Inferring config /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/mon.smithi049/config 2024-02-22T22:25:54.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:54 smithi195 bash[18068]: cluster 2024-02-22T22:25:53.454408+0000 mgr.smithi049.pzczis (mgr.14180) 160 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:54.887 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:54 smithi049 bash[14150]: cluster 2024-02-22T22:25:53.454408+0000 mgr.smithi049.pzczis (mgr.14180) 160 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:56.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:56 smithi049 bash[14150]: cluster 2024-02-22T22:25:55.455016+0000 mgr.smithi049.pzczis (mgr.14180) 161 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:56.754 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:25:56.755 INFO:teuthology.orchestra.run.smithi049.stdout:{"epoch":42,"fsid":"605df99c-d1d0-11ee-95c0-87774f69a715","created":"2024-02-22T22:19:55.420499+0000","modified":"2024-02-22T22:24:58.403079+0000","last_up_change":"2024-02-22T22:24:56.502549+0000","last_in_change":"2024-02-22T22:24:00.423887+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":17,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2024-02-22T22:24:34.569991+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"27","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr_devicehealth":{}}}],"osds":[{"osd":0,"uuid":"41e842e7-8891-410a-b83d-8d6428128203","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":40,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6800","nonce":406287926},{"type":"v1","addr":"172.21.15.195:6801","nonce":406287926}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6802","nonce":406287926},{"type":"v1","addr":"172.21.15.195:6803","nonce":406287926}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6806","nonce":406287926},{"type":"v1","addr":"172.21.15.195:6807","nonce":406287926}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6804","nonce":406287926},{"type":"v1","addr":"172.21.15.195:6805","nonce":406287926}]},"public_addr":"172.21.15.195:6801/406287926","cluster_addr":"172.21.15.195:6803/406287926","heartbeat_back_addr":"172.21.15.195:6807/406287926","heartbeat_front_addr":"172.21.15.195:6805/406287926","state":["exists","up"]},{"osd":1,"uuid":"4d964953-7129-4981-981a-db08d1a71033","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":32,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6802","nonce":1635209479},{"type":"v1","addr":"172.21.15.49:6803","nonce":1635209479}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6804","nonce":1635209479},{"type":"v1","addr":"172.21.15.49:6805","nonce":1635209479}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6808","nonce":1635209479},{"type":"v1","addr":"172.21.15.49:6809","nonce":1635209479}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6806","nonce":1635209479},{"type":"v1","addr":"172.21.15.49:6807","nonce":1635209479}]},"public_addr":"172.21.15.49:6803/1635209479","cluster_addr":"172.21.15.49:6805/1635209479","heartbeat_back_addr":"172.21.15.49:6809/1635209479","heartbeat_front_addr":"172.21.15.49:6807/1635209479","state":["exists","up"]},{"osd":2,"uuid":"39a8018e-d1c7-4144-8350-34a533c60036","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6808","nonce":3835375383},{"type":"v1","addr":"172.21.15.195:6809","nonce":3835375383}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6810","nonce":3835375383},{"type":"v1","addr":"172.21.15.195:6811","nonce":3835375383}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6814","nonce":3835375383},{"type":"v1","addr":"172.21.15.195:6815","nonce":3835375383}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6812","nonce":3835375383},{"type":"v1","addr":"172.21.15.195:6813","nonce":3835375383}]},"public_addr":"172.21.15.195:6809/3835375383","cluster_addr":"172.21.15.195:6811/3835375383","heartbeat_back_addr":"172.21.15.195:6815/3835375383","heartbeat_front_addr":"172.21.15.195:6813/3835375383","state":["exists","up"]},{"osd":3,"uuid":"189ce9d1-71a2-4554-94f5-7c9cc21aefb2","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6810","nonce":451529286},{"type":"v1","addr":"172.21.15.49:6811","nonce":451529286}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6812","nonce":451529286},{"type":"v1","addr":"172.21.15.49:6813","nonce":451529286}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6816","nonce":451529286},{"type":"v1","addr":"172.21.15.49:6817","nonce":451529286}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6814","nonce":451529286},{"type":"v1","addr":"172.21.15.49:6815","nonce":451529286}]},"public_addr":"172.21.15.49:6811/451529286","cluster_addr":"172.21.15.49:6813/451529286","heartbeat_back_addr":"172.21.15.49:6817/451529286","heartbeat_front_addr":"172.21.15.49:6815/451529286","state":["exists","up"]},{"osd":4,"uuid":"c91ef420-a472-4645-9275-a309041de606","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.195:6816","nonce":913072377},{"type":"v1","addr":"172.21.15.195:6817","nonce":913072377}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6818","nonce":913072377},{"type":"v1","addr":"172.21.15.195:6819","nonce":913072377}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6822","nonce":913072377},{"type":"v1","addr":"172.21.15.195:6823","nonce":913072377}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6820","nonce":913072377},{"type":"v1","addr":"172.21.15.195:6821","nonce":913072377}]},"public_addr":"172.21.15.195:6817/913072377","cluster_addr":"172.21.15.195:6819/913072377","heartbeat_back_addr":"172.21.15.195:6823/913072377","heartbeat_front_addr":"172.21.15.195:6821/913072377","state":["exists","up"]},{"osd":5,"uuid":"f2543b02-b061-4234-8f1c-1d42ffcd64f6","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":36,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6818","nonce":987390570},{"type":"v1","addr":"172.21.15.49:6819","nonce":987390570}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6820","nonce":987390570},{"type":"v1","addr":"172.21.15.49:6821","nonce":987390570}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6824","nonce":987390570},{"type":"v1","addr":"172.21.15.49:6825","nonce":987390570}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6822","nonce":987390570},{"type":"v1","addr":"172.21.15.49:6823","nonce":987390570}]},"public_addr":"172.21.15.49:6819/987390570","cluster_addr":"172.21.15.49:6821/987390570","heartbeat_back_addr":"172.21.15.49:6825/987390570","heartbeat_front_addr":"172.21.15.49:6823/987390570","state":["exists","up"]},{"osd":6,"uuid":"4d14f351-5019-428e-86cf-8ef4219946eb","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6824","nonce":3220905754},{"type":"v1","addr":"172.21.15.195:6825","nonce":3220905754}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6826","nonce":3220905754},{"type":"v1","addr":"172.21.15.195:6827","nonce":3220905754}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6830","nonce":3220905754},{"type":"v1","addr":"172.21.15.195:6831","nonce":3220905754}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6828","nonce":3220905754},{"type":"v1","addr":"172.21.15.195:6829","nonce":3220905754}]},"public_addr":"172.21.15.195:6825/3220905754","cluster_addr":"172.21.15.195:6827/3220905754","heartbeat_back_addr":"172.21.15.195:6831/3220905754","heartbeat_front_addr":"172.21.15.195:6829/3220905754","state":["exists","up"]},{"osd":7,"uuid":"fede6af6-732c-42ef-b782-19d0e203d793","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":40,"up_thru":41,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6826","nonce":2055654531},{"type":"v1","addr":"172.21.15.49:6827","nonce":2055654531}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6828","nonce":2055654531},{"type":"v1","addr":"172.21.15.49:6829","nonce":2055654531}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6832","nonce":2055654531},{"type":"v1","addr":"172.21.15.49:6833","nonce":2055654531}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.49:6830","nonce":2055654531},{"type":"v1","addr":"172.21.15.49:6831","nonce":2055654531}]},"public_addr":"172.21.15.49:6827/2055654531","cluster_addr":"172.21.15.49:6829/2055654531","heartbeat_back_addr":"172.21.15.49:6833/2055654531","heartbeat_front_addr":"172.21.15.49:6831/2055654531","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-22T22:24:23.032364+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-22T22:24:32.743614+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-22T22:24:28.294894+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-22T22:24:40.021456+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-22T22:24:34.388857+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-22T22:24:47.935016+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-22T22:24:39.057463+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-22T22:24:54.734369+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.49:6801/3283629490":"2024-02-23T22:22:07.392571+0000","172.21.15.49:6800/3283629490":"2024-02-23T22:22:07.392571+0000","172.21.15.49:0/2117719327":"2024-02-23T22:22:07.392571+0000","172.21.15.49:0/1421532408":"2024-02-23T22:22:07.392571+0000","172.21.15.49:0/3185739747":"2024-02-23T22:21:06.245212+0000","172.21.15.49:6800/1027053716":"2024-02-23T22:21:06.245212+0000","172.21.15.49:0/1812574208":"2024-02-23T22:20:24.324568+0000","172.21.15.49:0/673717231":"2024-02-23T22:21:06.245212+0000","172.21.15.49:6801/1027053716":"2024-02-23T22:21:06.245212+0000","172.21.15.49:6800/3925189488":"2024-02-23T22:20:24.324568+0000","172.21.15.49:0/2292444175":"2024-02-23T22:20:24.324568+0000","172.21.15.49:6801/3925189488":"2024-02-23T22:20:24.324568+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-22T22:25:56.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:56 smithi195 bash[18068]: cluster 2024-02-22T22:25:55.455016+0000 mgr.smithi049.pzczis (mgr.14180) 161 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:57.505 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph tell osd.0 flush_pg_stats 2024-02-22T22:25:57.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:57 smithi195 bash[18068]: audit 2024-02-22T22:25:56.752398+0000 mon.smithi049 (mon.0) 598 : audit [DBG] from='client.? 172.21.15.49:0/2007594801' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-22T22:25:57.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:57 smithi049 bash[14150]: audit 2024-02-22T22:25:56.752398+0000 mon.smithi049 (mon.0) 598 : audit [DBG] from='client.? 172.21.15.49:0/2007594801' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-22T22:25:58.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:25:58 smithi195 bash[18068]: cluster 2024-02-22T22:25:57.455521+0000 mgr.smithi049.pzczis (mgr.14180) 162 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:25:58.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:25:58 smithi049 bash[14150]: cluster 2024-02-22T22:25:57.455521+0000 mgr.smithi049.pzczis (mgr.14180) 162 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:00.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:00 smithi195 bash[18068]: cluster 2024-02-22T22:25:59.456131+0000 mgr.smithi049.pzczis (mgr.14180) 163 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:00 smithi049 bash[14150]: cluster 2024-02-22T22:25:59.456131+0000 mgr.smithi049.pzczis (mgr.14180) 163 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:02.304 INFO:teuthology.orchestra.run.smithi049.stderr:Inferring config /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/mon.smithi049/config 2024-02-22T22:26:02.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:02 smithi049 bash[14150]: cluster 2024-02-22T22:26:01.456674+0000 mgr.smithi049.pzczis (mgr.14180) 164 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:03.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:02 smithi195 bash[18068]: cluster 2024-02-22T22:26:01.456674+0000 mgr.smithi049.pzczis (mgr.14180) 164 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:04 smithi049 bash[14150]: cluster 2024-02-22T22:26:03.457282+0000 mgr.smithi049.pzczis (mgr.14180) 165 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:04 smithi195 bash[18068]: cluster 2024-02-22T22:26:03.457282+0000 mgr.smithi049.pzczis (mgr.14180) 165 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:05.701 INFO:teuthology.orchestra.run.smithi049.stdout:68719476759 2024-02-22T22:26:05.702 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph tell osd.1 flush_pg_stats 2024-02-22T22:26:05.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:05 smithi049 bash[14150]: cluster 2024-02-22T22:26:05.457849+0000 mgr.smithi049.pzczis (mgr.14180) 166 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:06.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:05 smithi195 bash[18068]: cluster 2024-02-22T22:26:05.457849+0000 mgr.smithi049.pzczis (mgr.14180) 166 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:08.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:08 smithi195 bash[18068]: cluster 2024-02-22T22:26:07.458400+0000 mgr.smithi049.pzczis (mgr.14180) 167 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:08.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:08 smithi049 bash[14150]: cluster 2024-02-22T22:26:07.458400+0000 mgr.smithi049.pzczis (mgr.14180) 167 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:10.492 INFO:teuthology.orchestra.run.smithi049.stderr:Inferring config /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/mon.smithi049/config 2024-02-22T22:26:10.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:10 smithi195 bash[18068]: cluster 2024-02-22T22:26:09.459015+0000 mgr.smithi049.pzczis (mgr.14180) 168 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:10.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:10 smithi049 bash[14150]: cluster 2024-02-22T22:26:09.459015+0000 mgr.smithi049.pzczis (mgr.14180) 168 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:12.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:12 smithi195 bash[18068]: cluster 2024-02-22T22:26:11.459576+0000 mgr.smithi049.pzczis (mgr.14180) 169 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:12.819 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:12 smithi049 bash[14150]: cluster 2024-02-22T22:26:11.459576+0000 mgr.smithi049.pzczis (mgr.14180) 169 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:13.435 INFO:teuthology.orchestra.run.smithi049.stdout:103079215126 2024-02-22T22:26:13.436 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph tell osd.2 flush_pg_stats 2024-02-22T22:26:14.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:14 smithi195 bash[18068]: cluster 2024-02-22T22:26:13.460178+0000 mgr.smithi049.pzczis (mgr.14180) 170 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:14.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:14 smithi049 bash[14150]: cluster 2024-02-22T22:26:13.460178+0000 mgr.smithi049.pzczis (mgr.14180) 170 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:16.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:16 smithi195 bash[18068]: cluster 2024-02-22T22:26:15.460758+0000 mgr.smithi049.pzczis (mgr.14180) 171 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:16.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:16 smithi049 bash[14150]: cluster 2024-02-22T22:26:15.460758+0000 mgr.smithi049.pzczis (mgr.14180) 171 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:18.232 INFO:teuthology.orchestra.run.smithi049.stderr:Inferring config /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/mon.smithi049/config 2024-02-22T22:26:18.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:18 smithi195 bash[18068]: cluster 2024-02-22T22:26:17.461371+0000 mgr.smithi049.pzczis (mgr.14180) 172 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:18.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:18 smithi049 bash[14150]: cluster 2024-02-22T22:26:17.461371+0000 mgr.smithi049.pzczis (mgr.14180) 172 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:20.794 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:20 smithi049 bash[14150]: cluster 2024-02-22T22:26:19.462010+0000 mgr.smithi049.pzczis (mgr.14180) 173 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:20.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:20 smithi195 bash[18068]: cluster 2024-02-22T22:26:19.462010+0000 mgr.smithi049.pzczis (mgr.14180) 173 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:21.505 INFO:teuthology.orchestra.run.smithi049.stdout:85899345945 2024-02-22T22:26:21.506 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph tell osd.3 flush_pg_stats 2024-02-22T22:26:22.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:22 smithi195 bash[18068]: cluster 2024-02-22T22:26:21.462725+0000 mgr.smithi049.pzczis (mgr.14180) 174 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:22.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:22 smithi049 bash[14150]: cluster 2024-02-22T22:26:21.462725+0000 mgr.smithi049.pzczis (mgr.14180) 174 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:24.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:24 smithi049 bash[14150]: cluster 2024-02-22T22:26:23.463345+0000 mgr.smithi049.pzczis (mgr.14180) 175 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:25.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:24 smithi195 bash[18068]: cluster 2024-02-22T22:26:23.463345+0000 mgr.smithi049.pzczis (mgr.14180) 175 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:26.303 INFO:teuthology.orchestra.run.smithi049.stderr:Inferring config /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/mon.smithi049/config 2024-02-22T22:26:26.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:26 smithi049 bash[14150]: cluster 2024-02-22T22:26:25.463896+0000 mgr.smithi049.pzczis (mgr.14180) 176 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:27.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:26 smithi195 bash[18068]: cluster 2024-02-22T22:26:25.463896+0000 mgr.smithi049.pzczis (mgr.14180) 176 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:28.870 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:28 smithi049 bash[14150]: cluster 2024-02-22T22:26:27.464438+0000 mgr.smithi049.pzczis (mgr.14180) 177 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:29.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:28 smithi195 bash[18068]: cluster 2024-02-22T22:26:27.464438+0000 mgr.smithi049.pzczis (mgr.14180) 177 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:29.836 INFO:teuthology.orchestra.run.smithi049.stdout:133143986201 2024-02-22T22:26:29.837 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph tell osd.4 flush_pg_stats 2024-02-22T22:26:29.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:29 smithi049 bash[14150]: cluster 2024-02-22T22:26:29.465061+0000 mgr.smithi049.pzczis (mgr.14180) 178 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:30.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:29 smithi195 bash[18068]: cluster 2024-02-22T22:26:29.465061+0000 mgr.smithi049.pzczis (mgr.14180) 178 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:32.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:32 smithi195 bash[18068]: cluster 2024-02-22T22:26:31.465626+0000 mgr.smithi049.pzczis (mgr.14180) 179 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:32.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:32 smithi049 bash[14150]: cluster 2024-02-22T22:26:31.465626+0000 mgr.smithi049.pzczis (mgr.14180) 179 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:34.628 INFO:teuthology.orchestra.run.smithi049.stderr:Inferring config /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/mon.smithi049/config 2024-02-22T22:26:34.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:34 smithi195 bash[18068]: cluster 2024-02-22T22:26:33.466307+0000 mgr.smithi049.pzczis (mgr.14180) 180 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:34.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:34 smithi049 bash[14150]: cluster 2024-02-22T22:26:33.466307+0000 mgr.smithi049.pzczis (mgr.14180) 180 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:36.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:36 smithi049 bash[14150]: cluster 2024-02-22T22:26:35.466983+0000 mgr.smithi049.pzczis (mgr.14180) 181 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:36.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:36 smithi195 bash[18068]: cluster 2024-02-22T22:26:35.466983+0000 mgr.smithi049.pzczis (mgr.14180) 181 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:38.040 INFO:teuthology.orchestra.run.smithi049.stdout:111669149724 2024-02-22T22:26:38.040 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph tell osd.5 flush_pg_stats 2024-02-22T22:26:38.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:38 smithi195 bash[18068]: cluster 2024-02-22T22:26:37.467600+0000 mgr.smithi049.pzczis (mgr.14180) 182 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:38 smithi049 bash[14150]: cluster 2024-02-22T22:26:37.467600+0000 mgr.smithi049.pzczis (mgr.14180) 182 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:40.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:40 smithi195 bash[18068]: cluster 2024-02-22T22:26:39.468210+0000 mgr.smithi049.pzczis (mgr.14180) 183 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:40.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:40 smithi049 bash[14150]: cluster 2024-02-22T22:26:39.468210+0000 mgr.smithi049.pzczis (mgr.14180) 183 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:42.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:42 smithi195 bash[18068]: cluster 2024-02-22T22:26:41.468750+0000 mgr.smithi049.pzczis (mgr.14180) 184 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:42.831 INFO:teuthology.orchestra.run.smithi049.stderr:Inferring config /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/mon.smithi049/config 2024-02-22T22:26:42.863 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:42 smithi049 bash[14150]: cluster 2024-02-22T22:26:41.468750+0000 mgr.smithi049.pzczis (mgr.14180) 184 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:43.852 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:43 smithi049 bash[14150]: audit 2024-02-22T22:26:42.858024+0000 mon.smithi049 (mon.0) 599 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:26:44.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:43 smithi195 bash[18068]: audit 2024-02-22T22:26:42.858024+0000 mon.smithi049 (mon.0) 599 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:26:44.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:44 smithi049 bash[14150]: cluster 2024-02-22T22:26:43.469367+0000 mgr.smithi049.pzczis (mgr.14180) 185 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:45.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:44 smithi195 bash[18068]: cluster 2024-02-22T22:26:43.469367+0000 mgr.smithi049.pzczis (mgr.14180) 185 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:46.257 INFO:teuthology.orchestra.run.smithi049.stdout:154618822682 2024-02-22T22:26:46.257 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph tell osd.6 flush_pg_stats 2024-02-22T22:26:46.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:46 smithi049 bash[14150]: cluster 2024-02-22T22:26:45.469895+0000 mgr.smithi049.pzczis (mgr.14180) 186 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:47.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:46 smithi195 bash[18068]: cluster 2024-02-22T22:26:45.469895+0000 mgr.smithi049.pzczis (mgr.14180) 186 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:48.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:48 smithi049 bash[14150]: cluster 2024-02-22T22:26:47.470350+0000 mgr.smithi049.pzczis (mgr.14180) 187 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:48.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:48 smithi049 bash[14150]: audit 2024-02-22T22:26:48.117837+0000 mon.smithi049 (mon.0) 600 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:26:48.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:48 smithi049 bash[14150]: audit 2024-02-22T22:26:48.312037+0000 mon.smithi049 (mon.0) 601 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:26:49.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:48 smithi195 bash[18068]: cluster 2024-02-22T22:26:47.470350+0000 mgr.smithi049.pzczis (mgr.14180) 187 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:49.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:48 smithi195 bash[18068]: audit 2024-02-22T22:26:48.117837+0000 mon.smithi049 (mon.0) 600 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:26:49.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:48 smithi195 bash[18068]: audit 2024-02-22T22:26:48.312037+0000 mon.smithi049 (mon.0) 601 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:26:49.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:49 smithi049 bash[14150]: audit 2024-02-22T22:26:48.595571+0000 mon.smithi049 (mon.0) 602 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:26:49.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:49 smithi049 bash[14150]: audit 2024-02-22T22:26:48.597351+0000 mon.smithi049 (mon.0) 603 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:26:49.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:49 smithi049 bash[14150]: audit 2024-02-22T22:26:48.605598+0000 mon.smithi049 (mon.0) 604 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:26:49.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:49 smithi049 bash[14150]: audit 2024-02-22T22:26:48.613210+0000 mon.smithi049 (mon.0) 605 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:26:49.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:49 smithi049 bash[14150]: cluster 2024-02-22T22:26:49.471015+0000 mgr.smithi049.pzczis (mgr.14180) 188 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:50.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:49 smithi195 bash[18068]: audit 2024-02-22T22:26:48.595571+0000 mon.smithi049 (mon.0) 602 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:26:50.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:49 smithi195 bash[18068]: audit 2024-02-22T22:26:48.597351+0000 mon.smithi049 (mon.0) 603 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:26:50.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:49 smithi195 bash[18068]: audit 2024-02-22T22:26:48.605598+0000 mon.smithi049 (mon.0) 604 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:26:50.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:49 smithi195 bash[18068]: audit 2024-02-22T22:26:48.613210+0000 mon.smithi049 (mon.0) 605 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:26:50.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:49 smithi195 bash[18068]: cluster 2024-02-22T22:26:49.471015+0000 mgr.smithi049.pzczis (mgr.14180) 188 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:50.985 INFO:teuthology.orchestra.run.smithi049.stderr:Inferring config /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/mon.smithi049/config 2024-02-22T22:26:52.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:52 smithi195 bash[18068]: cluster 2024-02-22T22:26:51.471583+0000 mgr.smithi049.pzczis (mgr.14180) 189 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:52.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:52 smithi049 bash[14150]: cluster 2024-02-22T22:26:51.471583+0000 mgr.smithi049.pzczis (mgr.14180) 189 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:54.394 INFO:teuthology.orchestra.run.smithi049.stdout:128849018909 2024-02-22T22:26:54.394 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph tell osd.7 flush_pg_stats 2024-02-22T22:26:54.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:54 smithi049 bash[14150]: cluster 2024-02-22T22:26:53.472173+0000 mgr.smithi049.pzczis (mgr.14180) 190 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:54.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:54 smithi195 bash[18068]: cluster 2024-02-22T22:26:53.472173+0000 mgr.smithi049.pzczis (mgr.14180) 190 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:56.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:56 smithi195 bash[18068]: cluster 2024-02-22T22:26:55.472750+0000 mgr.smithi049.pzczis (mgr.14180) 191 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:56.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:56 smithi049 bash[14150]: cluster 2024-02-22T22:26:55.472750+0000 mgr.smithi049.pzczis (mgr.14180) 191 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:58.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:26:58 smithi195 bash[18068]: cluster 2024-02-22T22:26:57.473385+0000 mgr.smithi049.pzczis (mgr.14180) 192 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:58.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:26:58 smithi049 bash[14150]: cluster 2024-02-22T22:26:57.473385+0000 mgr.smithi049.pzczis (mgr.14180) 192 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:26:59.184 INFO:teuthology.orchestra.run.smithi049.stderr:Inferring config /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/mon.smithi049/config 2024-02-22T22:27:00.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:00 smithi049 bash[14150]: cluster 2024-02-22T22:26:59.473970+0000 mgr.smithi049.pzczis (mgr.14180) 193 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:00.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:00 smithi195 bash[18068]: cluster 2024-02-22T22:26:59.473970+0000 mgr.smithi049.pzczis (mgr.14180) 193 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:02.479 INFO:teuthology.orchestra.run.smithi049.stdout:171798691867 2024-02-22T22:27:02.479 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd last-stat-seq osd.0 2024-02-22T22:27:02.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:02 smithi195 bash[18068]: cluster 2024-02-22T22:27:01.474559+0000 mgr.smithi049.pzczis (mgr.14180) 194 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:02.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:02 smithi049 bash[14150]: cluster 2024-02-22T22:27:01.474559+0000 mgr.smithi049.pzczis (mgr.14180) 194 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:04 smithi049 bash[14150]: cluster 2024-02-22T22:27:03.475178+0000 mgr.smithi049.pzczis (mgr.14180) 195 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:04 smithi195 bash[18068]: cluster 2024-02-22T22:27:03.475178+0000 mgr.smithi049.pzczis (mgr.14180) 195 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:06.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:06 smithi049 bash[14150]: cluster 2024-02-22T22:27:05.475809+0000 mgr.smithi049.pzczis (mgr.14180) 196 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:07.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:06 smithi195 bash[18068]: cluster 2024-02-22T22:27:05.475809+0000 mgr.smithi049.pzczis (mgr.14180) 196 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:07.275 INFO:teuthology.orchestra.run.smithi049.stderr:Inferring config /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/mon.smithi049/config 2024-02-22T22:27:08.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:08 smithi049 bash[14150]: cluster 2024-02-22T22:27:07.476359+0000 mgr.smithi049.pzczis (mgr.14180) 197 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:09.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:08 smithi195 bash[18068]: cluster 2024-02-22T22:27:07.476359+0000 mgr.smithi049.pzczis (mgr.14180) 197 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:10.164 INFO:teuthology.orchestra.run.smithi049.stdout:68719476772 2024-02-22T22:27:10.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:10 smithi049 bash[14150]: cluster 2024-02-22T22:27:09.476915+0000 mgr.smithi049.pzczis (mgr.14180) 198 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:10.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:10 smithi049 bash[14150]: audit 2024-02-22T22:27:10.164420+0000 mon.smithi049 (mon.0) 606 : audit [DBG] from='client.? 172.21.15.49:0/2129930970' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-02-22T22:27:10.864 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476759 got 68719476772 for osd.0 2024-02-22T22:27:10.864 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd last-stat-seq osd.1 2024-02-22T22:27:11.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:10 smithi195 bash[18068]: cluster 2024-02-22T22:27:09.476915+0000 mgr.smithi049.pzczis (mgr.14180) 198 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:11.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:10 smithi195 bash[18068]: audit 2024-02-22T22:27:10.164420+0000 mon.smithi049 (mon.0) 606 : audit [DBG] from='client.? 172.21.15.49:0/2129930970' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-02-22T22:27:11.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:11 smithi049 bash[14150]: cluster 2024-02-22T22:27:11.477534+0000 mgr.smithi049.pzczis (mgr.14180) 199 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:12.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:11 smithi195 bash[18068]: cluster 2024-02-22T22:27:11.477534+0000 mgr.smithi049.pzczis (mgr.14180) 199 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:14.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:14 smithi195 bash[18068]: cluster 2024-02-22T22:27:13.478066+0000 mgr.smithi049.pzczis (mgr.14180) 200 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:14.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:14 smithi049 bash[14150]: cluster 2024-02-22T22:27:13.478066+0000 mgr.smithi049.pzczis (mgr.14180) 200 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:15.657 INFO:teuthology.orchestra.run.smithi049.stderr:Inferring config /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/mon.smithi049/config 2024-02-22T22:27:16.801 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:16 smithi049 bash[14150]: cluster 2024-02-22T22:27:15.478693+0000 mgr.smithi049.pzczis (mgr.14180) 201 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:16.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:16 smithi195 bash[18068]: cluster 2024-02-22T22:27:15.478693+0000 mgr.smithi049.pzczis (mgr.14180) 201 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:18.500 INFO:teuthology.orchestra.run.smithi049.stdout:103079215139 2024-02-22T22:27:18.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:18 smithi195 bash[18068]: cluster 2024-02-22T22:27:17.479178+0000 mgr.smithi049.pzczis (mgr.14180) 202 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:18.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:18 smithi195 bash[18068]: audit 2024-02-22T22:27:18.499885+0000 mon.smithi049 (mon.0) 607 : audit [DBG] from='client.? 172.21.15.49:0/2134472146' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-02-22T22:27:18.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:18 smithi049 bash[14150]: cluster 2024-02-22T22:27:17.479178+0000 mgr.smithi049.pzczis (mgr.14180) 202 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:18.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:18 smithi049 bash[14150]: audit 2024-02-22T22:27:18.499885+0000 mon.smithi049 (mon.0) 607 : audit [DBG] from='client.? 172.21.15.49:0/2134472146' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-02-22T22:27:19.185 INFO:tasks.cephadm.ceph_manager.ceph:need seq 103079215126 got 103079215139 for osd.1 2024-02-22T22:27:19.185 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd last-stat-seq osd.2 2024-02-22T22:27:20.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:20 smithi195 bash[18068]: cluster 2024-02-22T22:27:19.479686+0000 mgr.smithi049.pzczis (mgr.14180) 203 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:20.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:20 smithi049 bash[14150]: cluster 2024-02-22T22:27:19.479686+0000 mgr.smithi049.pzczis (mgr.14180) 203 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:22.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:22 smithi049 bash[14150]: cluster 2024-02-22T22:27:21.480218+0000 mgr.smithi049.pzczis (mgr.14180) 204 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:23.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:22 smithi195 bash[18068]: cluster 2024-02-22T22:27:21.480218+0000 mgr.smithi049.pzczis (mgr.14180) 204 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:23.977 INFO:teuthology.orchestra.run.smithi049.stderr:Inferring config /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/mon.smithi049/config 2024-02-22T22:27:24.817 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:24 smithi049 bash[14150]: cluster 2024-02-22T22:27:23.480703+0000 mgr.smithi049.pzczis (mgr.14180) 205 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:25.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:24 smithi195 bash[18068]: cluster 2024-02-22T22:27:23.480703+0000 mgr.smithi049.pzczis (mgr.14180) 205 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:26.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:26 smithi049 bash[14150]: cluster 2024-02-22T22:27:25.481277+0000 mgr.smithi049.pzczis (mgr.14180) 206 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:26.718 INFO:teuthology.orchestra.run.smithi049.stdout:85899345957 2024-02-22T22:27:27.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:26 smithi195 bash[18068]: cluster 2024-02-22T22:27:25.481277+0000 mgr.smithi049.pzczis (mgr.14180) 206 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:27.414 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345945 got 85899345957 for osd.2 2024-02-22T22:27:27.415 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd last-stat-seq osd.3 2024-02-22T22:27:27.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:27 smithi049 bash[14150]: audit 2024-02-22T22:27:26.717646+0000 mon.smithi049 (mon.0) 608 : audit [DBG] from='client.? 172.21.15.49:0/2975996365' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-02-22T22:27:28.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:27 smithi195 bash[18068]: audit 2024-02-22T22:27:26.717646+0000 mon.smithi049 (mon.0) 608 : audit [DBG] from='client.? 172.21.15.49:0/2975996365' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-02-22T22:27:28.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:28 smithi049 bash[14150]: cluster 2024-02-22T22:27:27.481843+0000 mgr.smithi049.pzczis (mgr.14180) 207 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:29.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:28 smithi195 bash[18068]: cluster 2024-02-22T22:27:27.481843+0000 mgr.smithi049.pzczis (mgr.14180) 207 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:30.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:30 smithi049 bash[14150]: cluster 2024-02-22T22:27:29.482411+0000 mgr.smithi049.pzczis (mgr.14180) 208 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:31.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:30 smithi195 bash[18068]: cluster 2024-02-22T22:27:29.482411+0000 mgr.smithi049.pzczis (mgr.14180) 208 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:31.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:31 smithi049 bash[14150]: cluster 2024-02-22T22:27:31.482998+0000 mgr.smithi049.pzczis (mgr.14180) 209 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:32.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:31 smithi195 bash[18068]: cluster 2024-02-22T22:27:31.482998+0000 mgr.smithi049.pzczis (mgr.14180) 209 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:32.212 INFO:teuthology.orchestra.run.smithi049.stderr:Inferring config /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/mon.smithi049/config 2024-02-22T22:27:34.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:34 smithi195 bash[18068]: cluster 2024-02-22T22:27:33.483600+0000 mgr.smithi049.pzczis (mgr.14180) 210 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:34.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:34 smithi049 bash[14150]: cluster 2024-02-22T22:27:33.483600+0000 mgr.smithi049.pzczis (mgr.14180) 210 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:34.951 INFO:teuthology.orchestra.run.smithi049.stdout:133143986214 2024-02-22T22:27:35.661 INFO:tasks.cephadm.ceph_manager.ceph:need seq 133143986201 got 133143986214 for osd.3 2024-02-22T22:27:35.661 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd last-stat-seq osd.4 2024-02-22T22:27:35.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:35 smithi195 bash[18068]: audit 2024-02-22T22:27:34.951469+0000 mon.smithi049 (mon.0) 609 : audit [DBG] from='client.? 172.21.15.49:0/2590062672' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-02-22T22:27:35.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:35 smithi049 bash[14150]: audit 2024-02-22T22:27:34.951469+0000 mon.smithi049 (mon.0) 609 : audit [DBG] from='client.? 172.21.15.49:0/2590062672' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-02-22T22:27:36.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:36 smithi195 bash[18068]: cluster 2024-02-22T22:27:35.483986+0000 mgr.smithi049.pzczis (mgr.14180) 211 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:36.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:36 smithi049 bash[14150]: cluster 2024-02-22T22:27:35.483986+0000 mgr.smithi049.pzczis (mgr.14180) 211 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:38 smithi049 bash[14150]: cluster 2024-02-22T22:27:37.484523+0000 mgr.smithi049.pzczis (mgr.14180) 212 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:38 smithi195 bash[18068]: cluster 2024-02-22T22:27:37.484523+0000 mgr.smithi049.pzczis (mgr.14180) 212 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:40.462 INFO:teuthology.orchestra.run.smithi049.stderr:Inferring config /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/mon.smithi049/config 2024-02-22T22:27:40.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:40 smithi049 bash[14150]: cluster 2024-02-22T22:27:39.485083+0000 mgr.smithi049.pzczis (mgr.14180) 213 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:41.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:40 smithi195 bash[18068]: cluster 2024-02-22T22:27:39.485083+0000 mgr.smithi049.pzczis (mgr.14180) 213 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:42.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:42 smithi049 bash[14150]: cluster 2024-02-22T22:27:41.485691+0000 mgr.smithi049.pzczis (mgr.14180) 214 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:42 smithi195 bash[18068]: cluster 2024-02-22T22:27:41.485691+0000 mgr.smithi049.pzczis (mgr.14180) 214 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:43.320 INFO:teuthology.orchestra.run.smithi049.stdout:111669149736 2024-02-22T22:27:43.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:43 smithi049 bash[14150]: audit 2024-02-22T22:27:43.320045+0000 mon.smithi049 (mon.0) 610 : audit [DBG] from='client.? 172.21.15.49:0/1651433400' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-02-22T22:27:44.045 INFO:tasks.cephadm.ceph_manager.ceph:need seq 111669149724 got 111669149736 for osd.4 2024-02-22T22:27:44.045 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd last-stat-seq osd.5 2024-02-22T22:27:44.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:43 smithi195 bash[18068]: audit 2024-02-22T22:27:43.320045+0000 mon.smithi049 (mon.0) 610 : audit [DBG] from='client.? 172.21.15.49:0/1651433400' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-02-22T22:27:44.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:44 smithi049 bash[14150]: cluster 2024-02-22T22:27:43.486318+0000 mgr.smithi049.pzczis (mgr.14180) 215 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:45.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:44 smithi195 bash[18068]: cluster 2024-02-22T22:27:43.486318+0000 mgr.smithi049.pzczis (mgr.14180) 215 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:45.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:45 smithi049 bash[14150]: cluster 2024-02-22T22:27:45.487007+0000 mgr.smithi049.pzczis (mgr.14180) 216 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:46.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:45 smithi195 bash[18068]: cluster 2024-02-22T22:27:45.487007+0000 mgr.smithi049.pzczis (mgr.14180) 216 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:48.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:48 smithi195 bash[18068]: cluster 2024-02-22T22:27:47.487598+0000 mgr.smithi049.pzczis (mgr.14180) 217 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:48.837 INFO:teuthology.orchestra.run.smithi049.stderr:Inferring config /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/mon.smithi049/config 2024-02-22T22:27:48.859 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:48 smithi049 bash[14150]: cluster 2024-02-22T22:27:47.487598+0000 mgr.smithi049.pzczis (mgr.14180) 217 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:49.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:49 smithi195 bash[18068]: audit 2024-02-22T22:27:48.624732+0000 mon.smithi049 (mon.0) 611 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:27:49.889 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:49 smithi049 bash[14150]: audit 2024-02-22T22:27:48.624732+0000 mon.smithi049 (mon.0) 611 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:27:50.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:50 smithi049 bash[14150]: cluster 2024-02-22T22:27:49.488176+0000 mgr.smithi049.pzczis (mgr.14180) 218 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:51.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:50 smithi195 bash[18068]: cluster 2024-02-22T22:27:49.488176+0000 mgr.smithi049.pzczis (mgr.14180) 218 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:51.803 INFO:teuthology.orchestra.run.smithi049.stdout:154618822695 2024-02-22T22:27:52.563 INFO:tasks.cephadm.ceph_manager.ceph:need seq 154618822682 got 154618822695 for osd.5 2024-02-22T22:27:52.564 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd last-stat-seq osd.6 2024-02-22T22:27:52.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:52 smithi049 bash[14150]: cluster 2024-02-22T22:27:51.488655+0000 mgr.smithi049.pzczis (mgr.14180) 219 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:52.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:52 smithi049 bash[14150]: audit 2024-02-22T22:27:51.802721+0000 mon.smithi049 (mon.0) 612 : audit [DBG] from='client.? 172.21.15.49:0/2281933843' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-02-22T22:27:53.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:52 smithi195 bash[18068]: cluster 2024-02-22T22:27:51.488655+0000 mgr.smithi049.pzczis (mgr.14180) 219 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:53.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:52 smithi195 bash[18068]: audit 2024-02-22T22:27:51.802721+0000 mon.smithi049 (mon.0) 612 : audit [DBG] from='client.? 172.21.15.49:0/2281933843' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-02-22T22:27:54.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:54 smithi049 bash[14150]: cluster 2024-02-22T22:27:53.489123+0000 mgr.smithi049.pzczis (mgr.14180) 220 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:54.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:54 smithi049 bash[14150]: audit 2024-02-22T22:27:54.114283+0000 mon.smithi049 (mon.0) 613 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:27:54.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:54 smithi049 bash[14150]: audit 2024-02-22T22:27:54.251376+0000 mon.smithi049 (mon.0) 614 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:27:55.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:54 smithi195 bash[18068]: cluster 2024-02-22T22:27:53.489123+0000 mgr.smithi049.pzczis (mgr.14180) 220 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:55.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:54 smithi195 bash[18068]: audit 2024-02-22T22:27:54.114283+0000 mon.smithi049 (mon.0) 613 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:27:55.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:54 smithi195 bash[18068]: audit 2024-02-22T22:27:54.251376+0000 mon.smithi049 (mon.0) 614 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:27:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:55 smithi049 bash[14150]: audit 2024-02-22T22:27:54.562488+0000 mon.smithi049 (mon.0) 615 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:27:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:55 smithi049 bash[14150]: audit 2024-02-22T22:27:54.568237+0000 mon.smithi049 (mon.0) 616 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:27:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:55 smithi049 bash[14150]: audit 2024-02-22T22:27:54.575003+0000 mon.smithi049 (mon.0) 617 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:27:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:55 smithi049 bash[14150]: audit 2024-02-22T22:27:54.581285+0000 mon.smithi049 (mon.0) 618 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:27:56.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:55 smithi195 bash[18068]: audit 2024-02-22T22:27:54.562488+0000 mon.smithi049 (mon.0) 615 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:27:56.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:55 smithi195 bash[18068]: audit 2024-02-22T22:27:54.568237+0000 mon.smithi049 (mon.0) 616 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:27:56.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:55 smithi195 bash[18068]: audit 2024-02-22T22:27:54.575003+0000 mon.smithi049 (mon.0) 617 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:27:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:55 smithi195 bash[18068]: audit 2024-02-22T22:27:54.581285+0000 mon.smithi049 (mon.0) 618 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:27:56.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:56 smithi049 bash[14150]: cluster 2024-02-22T22:27:55.489684+0000 mgr.smithi049.pzczis (mgr.14180) 221 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:57.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:56 smithi195 bash[18068]: cluster 2024-02-22T22:27:55.489684+0000 mgr.smithi049.pzczis (mgr.14180) 221 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:57.115 INFO:teuthology.orchestra.run.smithi049.stderr:Inferring config /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/mon.smithi049/config 2024-02-22T22:27:58.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:27:58 smithi195 bash[18068]: cluster 2024-02-22T22:27:57.490253+0000 mgr.smithi049.pzczis (mgr.14180) 222 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:27:58.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:27:58 smithi049 bash[14150]: cluster 2024-02-22T22:27:57.490253+0000 mgr.smithi049.pzczis (mgr.14180) 222 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:00.096 INFO:teuthology.orchestra.run.smithi049.stdout:128849018922 2024-02-22T22:28:00.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:00 smithi195 bash[18068]: cluster 2024-02-22T22:27:59.490738+0000 mgr.smithi049.pzczis (mgr.14180) 223 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:00.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:00 smithi195 bash[18068]: audit 2024-02-22T22:28:00.096630+0000 mon.smithi049 (mon.0) 619 : audit [DBG] from='client.? 172.21.15.49:0/53906205' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-02-22T22:28:00.823 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:00 smithi049 bash[14150]: cluster 2024-02-22T22:27:59.490738+0000 mgr.smithi049.pzczis (mgr.14180) 223 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:00.824 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:00 smithi049 bash[14150]: audit 2024-02-22T22:28:00.096630+0000 mon.smithi049 (mon.0) 619 : audit [DBG] from='client.? 172.21.15.49:0/53906205' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-02-22T22:28:00.824 INFO:tasks.cephadm.ceph_manager.ceph:need seq 128849018909 got 128849018922 for osd.6 2024-02-22T22:28:00.825 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph osd last-stat-seq osd.7 2024-02-22T22:28:02.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:02 smithi195 bash[18068]: cluster 2024-02-22T22:28:01.491283+0000 mgr.smithi049.pzczis (mgr.14180) 224 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:02.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:02 smithi049 bash[14150]: cluster 2024-02-22T22:28:01.491283+0000 mgr.smithi049.pzczis (mgr.14180) 224 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:04 smithi049 bash[14150]: cluster 2024-02-22T22:28:03.491956+0000 mgr.smithi049.pzczis (mgr.14180) 225 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:04 smithi195 bash[18068]: cluster 2024-02-22T22:28:03.491956+0000 mgr.smithi049.pzczis (mgr.14180) 225 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:05.618 INFO:teuthology.orchestra.run.smithi049.stderr:Inferring config /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/mon.smithi049/config 2024-02-22T22:28:06.776 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:06 smithi049 bash[14150]: cluster 2024-02-22T22:28:05.492581+0000 mgr.smithi049.pzczis (mgr.14180) 226 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:07.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:06 smithi195 bash[18068]: cluster 2024-02-22T22:28:05.492581+0000 mgr.smithi049.pzczis (mgr.14180) 226 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:08.479 INFO:teuthology.orchestra.run.smithi049.stdout:171798691880 2024-02-22T22:28:08.847 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:08 smithi049 bash[14150]: cluster 2024-02-22T22:28:07.493011+0000 mgr.smithi049.pzczis (mgr.14180) 227 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:08.847 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:08 smithi049 bash[14150]: audit 2024-02-22T22:28:08.479212+0000 mon.smithi049 (mon.0) 620 : audit [DBG] from='client.? 172.21.15.49:0/2445616080' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-02-22T22:28:09.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:08 smithi195 bash[18068]: cluster 2024-02-22T22:28:07.493011+0000 mgr.smithi049.pzczis (mgr.14180) 227 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:09.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:08 smithi195 bash[18068]: audit 2024-02-22T22:28:08.479212+0000 mon.smithi049 (mon.0) 620 : audit [DBG] from='client.? 172.21.15.49:0/2445616080' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-02-22T22:28:09.194 INFO:tasks.cephadm.ceph_manager.ceph:need seq 171798691867 got 171798691880 for osd.7 2024-02-22T22:28:09.194 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-02-22T22:28:09.194 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph pg dump --format=json 2024-02-22T22:28:10.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:10 smithi049 bash[14150]: cluster 2024-02-22T22:28:09.493583+0000 mgr.smithi049.pzczis (mgr.14180) 228 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:11.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:10 smithi195 bash[18068]: cluster 2024-02-22T22:28:09.493583+0000 mgr.smithi049.pzczis (mgr.14180) 228 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:12.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:12 smithi049 bash[14150]: cluster 2024-02-22T22:28:11.494212+0000 mgr.smithi049.pzczis (mgr.14180) 229 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:13.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:12 smithi195 bash[18068]: cluster 2024-02-22T22:28:11.494212+0000 mgr.smithi049.pzczis (mgr.14180) 229 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:13.977 INFO:teuthology.orchestra.run.smithi049.stderr:Inferring config /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/mon.smithi049/config 2024-02-22T22:28:14.845 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:14 smithi049 bash[14150]: cluster 2024-02-22T22:28:13.494887+0000 mgr.smithi049.pzczis (mgr.14180) 230 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:15.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:14 smithi195 bash[18068]: cluster 2024-02-22T22:28:13.494887+0000 mgr.smithi049.pzczis (mgr.14180) 230 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:15.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:15 smithi049 bash[14150]: cluster 2024-02-22T22:28:15.495486+0000 mgr.smithi049.pzczis (mgr.14180) 231 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:16.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:15 smithi195 bash[18068]: cluster 2024-02-22T22:28:15.495486+0000 mgr.smithi049.pzczis (mgr.14180) 231 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:16.880 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:28:16.883 INFO:teuthology.orchestra.run.smithi049.stderr:dumped all 2024-02-22T22:28:17.564 INFO:teuthology.orchestra.run.smithi049.stdout:{"pg_ready":true,"pg_map":{"version":215,"stamp":"2024-02-22T22:28:15.495204+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":2380040,"kb_used_data":3272,"kb_used_omap":0,"kb_used_meta":2376704,"kb_avail":747548408,"statfs":{"total":767926730752,"available":765489569792,"internally_reserved":0,"allocated":3350528,"data_stored":1306126,"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":42,"state":"active+clean","last_fresh":"2024-02-22T22:24:58.438896+0000","last_change":"2024-02-22T22:24:58.438896+0000","last_active":"2024-02-22T22:24:58.438896+0000","last_peered":"2024-02-22T22:24:58.438896+0000","last_clean":"2024-02-22T22:24:58.438896+0000","last_became_active":"2024-02-22T22:24:58.438275+0000","last_became_peered":"2024-02-22T22:24:58.438275+0000","last_unstale":"2024-02-22T22:24:58.438896+0000","last_undegraded":"2024-02-22T22:24:58.438896+0000","last_fullsized":"2024-02-22T22:24:58.438896+0000","mapping_epoch":41,"log_start":"0'0","ondisk_log_start":"0'0","created":25,"last_epoch_clean":42,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-02-22T22:24:35.097621+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-02-22T22:24:35.097621+0000","last_clean_scrub_stamp":"2024-02-22T22:24:35.097621+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":40,"seq":171798691882,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297504,"kb_used_data":408,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443552,"statfs":{"total":95990841344,"available":95686197248,"internally_reserved":0,"allocated":417792,"data_stored":163187,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu Feb 22 22:28:00 2024","interfaces":[{"interface":"back","average":{"1min":0.93899999999999995,"5min":0.94999999999999996,"15min":0.95299999999999996},"min":{"1min":0.67800000000000005,"5min":0.67600000000000005,"15min":0.67600000000000005},"max":{"1min":1.246,"5min":1.4219999999999999,"15min":1.4219999999999999},"last":0.77400000000000002},{"interface":"front","average":{"1min":0.92000000000000004,"5min":0.94199999999999995,"15min":0.95199999999999996},"min":{"1min":0.70299999999999996,"5min":0.63400000000000001,"15min":0.63400000000000001},"max":{"1min":1.3520000000000001,"5min":1.4630000000000001,"15min":1.4630000000000001},"last":1.135}]},{"osd":1,"last update":"Thu Feb 22 22:28:00 2024","interfaces":[{"interface":"back","average":{"1min":0.75,"5min":0.76200000000000001,"15min":0.754},"min":{"1min":0.60699999999999998,"5min":0.45000000000000001,"15min":0.45000000000000001},"max":{"1min":1.276,"5min":1.276,"15min":1.276},"last":1.2869999999999999},{"interface":"front","average":{"1min":0.83299999999999996,"5min":0.84499999999999997,"15min":0.85399999999999998},"min":{"1min":0.51500000000000001,"5min":0.51500000000000001,"15min":0.51500000000000001},"max":{"1min":1.054,"5min":1.2749999999999999,"15min":1.2749999999999999},"last":0.623}]},{"osd":2,"last update":"Thu Feb 22 22:28:00 2024","interfaces":[{"interface":"back","average":{"1min":0.91800000000000004,"5min":0.89500000000000002,"15min":0.88600000000000001},"min":{"1min":0.66500000000000004,"5min":0.66500000000000004,"15min":0.66500000000000004},"max":{"1min":1.333,"5min":2.2160000000000002,"15min":2.2160000000000002},"last":1.038},{"interface":"front","average":{"1min":0.97199999999999998,"5min":1.012,"15min":1.02},"min":{"1min":0.71099999999999997,"5min":0.61199999999999999,"15min":0.61199999999999999},"max":{"1min":1.2749999999999999,"5min":1.353,"15min":1.353},"last":0.93400000000000005}]},{"osd":3,"last update":"Thu Feb 22 22:28:00 2024","interfaces":[{"interface":"back","average":{"1min":0.88400000000000001,"5min":0.94799999999999995,"15min":0.97499999999999998},"min":{"1min":0.57199999999999995,"5min":0.54800000000000004,"15min":0.54800000000000004},"max":{"1min":1.232,"5min":1.385,"15min":1.385},"last":0.83199999999999996},{"interface":"front","average":{"1min":0.83899999999999997,"5min":0.90600000000000003,"15min":0.90400000000000003},"min":{"1min":0.52200000000000002,"5min":0.42999999999999999,"15min":0.42999999999999999},"max":{"1min":1.2270000000000001,"5min":1.9350000000000001,"15min":1.9350000000000001},"last":1.1839999999999999}]},{"osd":4,"last update":"Thu Feb 22 22:28:00 2024","interfaces":[{"interface":"back","average":{"1min":0.97599999999999998,"5min":1.028,"15min":1.0369999999999999},"min":{"1min":0.67000000000000004,"5min":0.67000000000000004,"15min":0.67000000000000004},"max":{"1min":1.266,"5min":2.1309999999999998,"15min":2.1309999999999998},"last":0.88500000000000001},{"interface":"front","average":{"1min":1.0860000000000001,"5min":1.1479999999999999,"15min":1.171},"min":{"1min":0.73199999999999998,"5min":0.68000000000000005,"15min":0.68000000000000005},"max":{"1min":1.4399999999999999,"5min":1.708,"15min":1.708},"last":1.2170000000000001}]},{"osd":5,"last update":"Thu Feb 22 22:28:00 2024","interfaces":[{"interface":"back","average":{"1min":1.04,"5min":1.1359999999999999,"15min":1.1639999999999999},"min":{"1min":0.60099999999999998,"5min":0.49399999999999999,"15min":0.49399999999999999},"max":{"1min":1.524,"5min":1.8140000000000001,"15min":1.8140000000000001},"last":1.069},{"interface":"front","average":{"1min":1.105,"5min":1.159,"15min":1.181},"min":{"1min":0.57099999999999995,"5min":0.55900000000000005,"15min":0.55900000000000005},"max":{"1min":1.5489999999999999,"5min":1.7410000000000001,"15min":1.7410000000000001},"last":0.95199999999999996}]},{"osd":6,"last update":"Thu Feb 22 22:28:00 2024","interfaces":[{"interface":"back","average":{"1min":1.2190000000000001,"5min":1.2529999999999999,"15min":1.274},"min":{"1min":0.83599999999999997,"5min":0.83599999999999997,"15min":0.83599999999999997},"max":{"1min":1.623,"5min":2.0430000000000001,"15min":2.0430000000000001},"last":1.2629999999999999},{"interface":"front","average":{"1min":1.093,"5min":1.1499999999999999,"15min":1.157},"min":{"1min":0.71599999999999997,"5min":0.68999999999999995,"15min":0.68999999999999995},"max":{"1min":1.4690000000000001,"5min":2.1789999999999998,"15min":2.1789999999999998},"last":1.246}]}]},{"osd":5,"up_from":36,"seq":154618822700,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297504,"kb_used_data":408,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443552,"statfs":{"total":95990841344,"available":95686197248,"internally_reserved":0,"allocated":417792,"data_stored":163187,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu Feb 22 22:27:50 2024","interfaces":[{"interface":"back","average":{"1min":0.85999999999999999,"5min":0.876,"15min":0.88100000000000001},"min":{"1min":0.65700000000000003,"5min":0.56399999999999995,"15min":0.56399999999999995},"max":{"1min":1.3600000000000001,"5min":2.9500000000000002,"15min":2.9500000000000002},"last":1.109},{"interface":"front","average":{"1min":0.88600000000000001,"5min":0.92200000000000004,"15min":0.93400000000000005},"min":{"1min":0.71199999999999997,"5min":0.53900000000000003,"15min":0.53900000000000003},"max":{"1min":1.0800000000000001,"5min":4.5419999999999998,"15min":4.5419999999999998},"last":0.65000000000000002}]},{"osd":1,"last update":"Thu Feb 22 22:27:50 2024","interfaces":[{"interface":"back","average":{"1min":0.72599999999999998,"5min":0.82199999999999995,"15min":0.85199999999999998},"min":{"1min":0.51900000000000002,"5min":0.40699999999999997,"15min":0.40699999999999997},"max":{"1min":1.0860000000000001,"5min":3.508,"15min":3.508},"last":0.48199999999999998},{"interface":"front","average":{"1min":0.73799999999999999,"5min":0.77900000000000003,"15min":0.78100000000000003},"min":{"1min":0.51800000000000002,"5min":0.45400000000000001,"15min":0.45400000000000001},"max":{"1min":1.0169999999999999,"5min":2.1059999999999999,"15min":2.1059999999999999},"last":0.54400000000000004}]},{"osd":2,"last update":"Thu Feb 22 22:27:50 2024","interfaces":[{"interface":"back","average":{"1min":0.94399999999999995,"5min":0.97999999999999998,"15min":1},"min":{"1min":0.55000000000000004,"5min":0.55000000000000004,"15min":0.55000000000000004},"max":{"1min":1.1919999999999999,"5min":2.1850000000000001,"15min":2.1850000000000001},"last":0.97499999999999998},{"interface":"front","average":{"1min":0.95999999999999996,"5min":1.036,"15min":1.0620000000000001},"min":{"1min":0.71999999999999997,"5min":0.67600000000000005,"15min":0.67600000000000005},"max":{"1min":1.218,"5min":3.9900000000000002,"15min":3.9900000000000002},"last":1.0349999999999999}]},{"osd":3,"last update":"Thu Feb 22 22:27:50 2024","interfaces":[{"interface":"back","average":{"1min":0.85499999999999998,"5min":0.92700000000000005,"15min":0.96099999999999997},"min":{"1min":0.58199999999999996,"5min":0.49199999999999999,"15min":0.49199999999999999},"max":{"1min":1.1870000000000001,"5min":3.8660000000000001,"15min":3.8660000000000001},"last":0.61299999999999999},{"interface":"front","average":{"1min":0.875,"5min":0.98499999999999999,"15min":1.016},"min":{"1min":0.48099999999999998,"5min":0.48099999999999998,"15min":0.48099999999999998},"max":{"1min":1.2410000000000001,"5min":3.0270000000000001,"15min":3.0270000000000001},"last":1.0920000000000001}]},{"osd":4,"last update":"Thu Feb 22 22:27:50 2024","interfaces":[{"interface":"back","average":{"1min":1.0069999999999999,"5min":1.081,"15min":1.099},"min":{"1min":0.74099999999999999,"5min":0.63,"15min":0.63},"max":{"1min":1.5529999999999999,"5min":3.9449999999999998,"15min":3.9449999999999998},"last":0.86799999999999999},{"interface":"front","average":{"1min":1.008,"5min":1.087,"15min":1.1060000000000001},"min":{"1min":0.56899999999999995,"5min":0.56899999999999995,"15min":0.56899999999999995},"max":{"1min":1.2729999999999999,"5min":2.573,"15min":2.573},"last":0.77500000000000002}]},{"osd":6,"last update":"Thu Feb 22 22:27:50 2024","interfaces":[{"interface":"back","average":{"1min":1.1040000000000001,"5min":1.159,"15min":1.1830000000000001},"min":{"1min":0.81399999999999995,"5min":0.71499999999999997,"15min":0.71499999999999997},"max":{"1min":1.3740000000000001,"5min":4.3479999999999999,"15min":4.3479999999999999},"last":0.91000000000000003},{"interface":"front","average":{"1min":1.1359999999999999,"5min":1.1579999999999999,"15min":1.1699999999999999},"min":{"1min":0.80700000000000005,"5min":0.69099999999999995,"15min":0.69099999999999995},"max":{"1min":1.776,"5min":3.7719999999999998,"15min":3.7719999999999998},"last":1.0049999999999999}]},{"osd":7,"last update":"Thu Feb 22 22:28:02 2024","interfaces":[{"interface":"back","average":{"1min":1.0229999999999999,"5min":1.0580000000000001,"15min":1.056},"min":{"1min":0.41999999999999998,"5min":0.41999999999999998,"15min":0.41999999999999998},"max":{"1min":1.3109999999999999,"5min":1.472,"15min":1.472},"last":1.1779999999999999},{"interface":"front","average":{"1min":1.135,"5min":1.089,"15min":1.079},"min":{"1min":0.75,"5min":0.66300000000000003,"15min":0.66300000000000003},"max":{"1min":1.5,"5min":1.5,"15min":1.5},"last":1.1379999999999999}]}]},{"osd":2,"up_from":20,"seq":85899345967,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297504,"kb_used_data":408,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443552,"statfs":{"total":95990841344,"available":95686197248,"internally_reserved":0,"allocated":417792,"data_stored":163187,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu Feb 22 22:27:36 2024","interfaces":[{"interface":"back","average":{"1min":0.68300000000000005,"5min":0.65300000000000002,"15min":0.63200000000000001},"min":{"1min":0.56399999999999995,"5min":0.49299999999999999,"15min":0.49299999999999999},"max":{"1min":1.103,"5min":1.103,"15min":1.103},"last":0.66500000000000004},{"interface":"front","average":{"1min":0.76400000000000001,"5min":0.72699999999999998,"15min":0.71499999999999997},"min":{"1min":0.52800000000000002,"5min":0.42299999999999999,"15min":0.42299999999999999},"max":{"1min":1.0840000000000001,"5min":1.165,"15min":1.165},"last":1.0029999999999999}]},{"osd":1,"last update":"Thu Feb 22 22:27:42 2024","interfaces":[{"interface":"back","average":{"1min":0.94499999999999995,"5min":0.90100000000000002,"15min":0.875},"min":{"1min":0.69099999999999995,"5min":0.56899999999999995,"15min":0.56899999999999995},"max":{"1min":1.1459999999999999,"5min":1.224,"15min":1.224},"last":0.87},{"interface":"front","average":{"1min":0.996,"5min":0.94999999999999996,"15min":0.93300000000000005},"min":{"1min":0.54000000000000004,"5min":0.54000000000000004,"15min":0.54000000000000004},"max":{"1min":1.3340000000000001,"5min":1.3340000000000001,"15min":1.3340000000000001},"last":0.81999999999999995}]},{"osd":3,"last update":"Thu Feb 22 22:27:46 2024","interfaces":[{"interface":"back","average":{"1min":1.016,"5min":0.97199999999999998,"15min":0.96399999999999997},"min":{"1min":0.77000000000000002,"5min":0.63800000000000001,"15min":0.63800000000000001},"max":{"1min":1.2250000000000001,"5min":1.3680000000000001,"15min":1.3680000000000001},"last":0.70199999999999996},{"interface":"front","average":{"1min":1.0409999999999999,"5min":0.97499999999999998,"15min":0.95899999999999996},"min":{"1min":0.749,"5min":0.70799999999999996,"15min":0.70799999999999996},"max":{"1min":1.3879999999999999,"5min":1.3879999999999999,"15min":1.3879999999999999},"last":0.90900000000000003}]},{"osd":4,"last update":"Thu Feb 22 22:27:42 2024","interfaces":[{"interface":"back","average":{"1min":0.83399999999999996,"5min":0.85999999999999999,"15min":0.86399999999999999},"min":{"1min":0.59999999999999998,"5min":0.59999999999999998,"15min":0.59999999999999998},"max":{"1min":0.996,"5min":1.1539999999999999,"15min":1.1539999999999999},"last":1.0209999999999999},{"interface":"front","average":{"1min":0.86399999999999999,"5min":0.82099999999999995,"15min":0.79700000000000004},"min":{"1min":0.70399999999999996,"5min":0.51600000000000001,"15min":0.51600000000000001},"max":{"1min":1.0649999999999999,"5min":1.3380000000000001,"15min":1.3380000000000001},"last":0.95599999999999996}]},{"osd":5,"last update":"Thu Feb 22 22:27:58 2024","interfaces":[{"interface":"back","average":{"1min":1.081,"5min":1.0329999999999999,"15min":1.0229999999999999},"min":{"1min":0.86599999999999999,"5min":0.72999999999999998,"15min":0.72999999999999998},"max":{"1min":1.266,"5min":1.3200000000000001,"15min":1.3200000000000001},"last":1.0920000000000001},{"interface":"front","average":{"1min":1.0049999999999999,"5min":1,"15min":1.0049999999999999},"min":{"1min":0.77800000000000002,"5min":0.77800000000000002,"15min":0.77800000000000002},"max":{"1min":1.2549999999999999,"5min":1.4670000000000001,"15min":1.4670000000000001},"last":0.84499999999999997}]},{"osd":6,"last update":"Thu Feb 22 22:27:46 2024","interfaces":[{"interface":"back","average":{"1min":1.0960000000000001,"5min":0.99399999999999999,"15min":0.95799999999999996},"min":{"1min":0.91700000000000004,"5min":0.624,"15min":0.624},"max":{"1min":1.2889999999999999,"5min":1.425,"15min":1.425},"last":1.0629999999999999},{"interface":"front","average":{"1min":1.1579999999999999,"5min":1.1240000000000001,"15min":1.1140000000000001},"min":{"1min":0.91600000000000004,"5min":0.78400000000000003,"15min":0.78400000000000003},"max":{"1min":1.4359999999999999,"5min":1.4359999999999999,"15min":1.4359999999999999},"last":1.1319999999999999}]},{"osd":7,"last update":"Thu Feb 22 22:28:06 2024","interfaces":[{"interface":"back","average":{"1min":1.1259999999999999,"5min":1.069,"15min":1.0549999999999999},"min":{"1min":0.98099999999999998,"5min":0.81200000000000006,"15min":0.81200000000000006},"max":{"1min":1.5600000000000001,"5min":1.583,"15min":1.583},"last":1.0429999999999999},{"interface":"front","average":{"1min":1.208,"5min":1.1399999999999999,"15min":1.1240000000000001},"min":{"1min":1.0960000000000001,"5min":0.76400000000000001,"15min":0.76400000000000001},"max":{"1min":1.6240000000000001,"5min":1.847,"15min":1.847},"last":1.113}]}]},{"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":297504,"kb_used_data":408,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443552,"statfs":{"total":95990841344,"available":95686197248,"internally_reserved":0,"allocated":417792,"data_stored":163187,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":1,"last update":"Thu Feb 22 22:27:41 2024","interfaces":[{"interface":"back","average":{"1min":0.83499999999999996,"5min":0.86899999999999999,"15min":0.87},"min":{"1min":0.51800000000000002,"5min":0.51800000000000002,"15min":0.51800000000000002},"max":{"1min":1.165,"5min":1.5780000000000001,"15min":1.5780000000000001},"last":0.51700000000000002},{"interface":"front","average":{"1min":0.86299999999999999,"5min":0.89800000000000002,"15min":0.90200000000000002},"min":{"1min":0.56399999999999995,"5min":0.56399999999999995,"15min":0.56399999999999995},"max":{"1min":1.262,"5min":1.5649999999999999,"15min":1.5649999999999999},"last":0.76200000000000001}]},{"osd":2,"last update":"Thu Feb 22 22:27:41 2024","interfaces":[{"interface":"back","average":{"1min":0.79100000000000004,"5min":0.80000000000000004,"15min":0.80000000000000004},"min":{"1min":0.59099999999999997,"5min":0.57599999999999996,"15min":0.57599999999999996},"max":{"1min":1.079,"5min":1.1739999999999999,"15min":1.1739999999999999},"last":0.85099999999999998},{"interface":"front","average":{"1min":0.82799999999999996,"5min":0.81000000000000005,"15min":0.81599999999999995},"min":{"1min":0.53500000000000003,"5min":0.53500000000000003,"15min":0.53500000000000003},"max":{"1min":1.083,"5min":1.129,"15min":1.129},"last":0.61599999999999999}]},{"osd":3,"last update":"Thu Feb 22 22:27:51 2024","interfaces":[{"interface":"back","average":{"1min":0.92000000000000004,"5min":0.96699999999999997,"15min":0.98699999999999999},"min":{"1min":0.64000000000000001,"5min":0.64000000000000001,"15min":0.64000000000000001},"max":{"1min":1.2010000000000001,"5min":1.3819999999999999,"15min":1.3819999999999999},"last":0.80200000000000005},{"interface":"front","average":{"1min":0.97199999999999998,"5min":0.97699999999999998,"15min":0.97099999999999997},"min":{"1min":0.73599999999999999,"5min":0.64700000000000002,"15min":0.64700000000000002},"max":{"1min":1.288,"5min":1.302,"15min":1.302},"last":0.95499999999999996}]},{"osd":4,"last update":"Thu Feb 22 22:27:41 2024","interfaces":[{"interface":"back","average":{"1min":0.88700000000000001,"5min":0.84199999999999997,"15min":0.83299999999999996},"min":{"1min":0.48999999999999999,"5min":0.48999999999999999,"15min":0.48999999999999999},"max":{"1min":1.202,"5min":1.202,"15min":1.202},"last":0.90400000000000003},{"interface":"front","average":{"1min":0.89900000000000002,"5min":0.91600000000000004,"15min":0.91900000000000004},"min":{"1min":0.61799999999999999,"5min":0.59199999999999997,"15min":0.59199999999999997},"max":{"1min":1.1699999999999999,"5min":1.2849999999999999,"15min":1.2849999999999999},"last":0.877}]},{"osd":5,"last update":"Thu Feb 22 22:27:51 2024","interfaces":[{"interface":"back","average":{"1min":1.0069999999999999,"5min":1.048,"15min":1.0660000000000001},"min":{"1min":0.748,"5min":0.748,"15min":0.748},"max":{"1min":1.3300000000000001,"5min":1.379,"15min":1.379},"last":0.68899999999999995},{"interface":"front","average":{"1min":1.0509999999999999,"5min":1.095,"15min":1.1160000000000001},"min":{"1min":0.73999999999999999,"5min":0.73999999999999999,"15min":0.73999999999999999},"max":{"1min":1.474,"5min":1.4770000000000001,"15min":1.4770000000000001},"last":0.66800000000000004}]},{"osd":6,"last update":"Thu Feb 22 22:27:51 2024","interfaces":[{"interface":"back","average":{"1min":1.03,"5min":1.026,"15min":1.0269999999999999},"min":{"1min":0.69199999999999995,"5min":0.66800000000000004,"15min":0.66800000000000004},"max":{"1min":1.25,"5min":1.353,"15min":1.353},"last":1.1040000000000001},{"interface":"front","average":{"1min":1.0880000000000001,"5min":1.137,"15min":1.149},"min":{"1min":0.80300000000000005,"5min":0.80300000000000005,"15min":0.80300000000000005},"max":{"1min":1.393,"5min":1.5329999999999999,"15min":1.5329999999999999},"last":1.163}]},{"osd":7,"last update":"Thu Feb 22 22:28:07 2024","interfaces":[{"interface":"back","average":{"1min":1.1000000000000001,"5min":1.1830000000000001,"15min":1.2170000000000001},"min":{"1min":0.70799999999999996,"5min":0.70799999999999996,"15min":0.70799999999999996},"max":{"1min":1.478,"5min":1.663,"15min":1.663},"last":1.05},{"interface":"front","average":{"1min":1.204,"5min":1.1830000000000001,"15min":1.2},"min":{"1min":0.80800000000000005,"5min":0.748,"15min":0.748},"max":{"1min":2.2269999999999999,"5min":2.2269999999999999,"15min":2.2269999999999999},"last":1.024}]}]},{"osd":1,"up_from":24,"seq":103079215151,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297508,"kb_used_data":412,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443548,"statfs":{"total":95990841344,"available":95686193152,"internally_reserved":0,"allocated":421888,"data_stored":163502,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu Feb 22 22:27:38 2024","interfaces":[{"interface":"back","average":{"1min":0.91200000000000003,"5min":0.92100000000000004,"15min":0.92500000000000004},"min":{"1min":0.70499999999999996,"5min":0.54200000000000004,"15min":0.54200000000000004},"max":{"1min":1.226,"5min":1.659,"15min":1.659},"last":0.77000000000000002},{"interface":"front","average":{"1min":0.89400000000000002,"5min":0.83799999999999997,"15min":0.80900000000000005},"min":{"1min":0.70899999999999996,"5min":0.57899999999999996,"15min":0.57899999999999996},"max":{"1min":1.204,"5min":1.204,"15min":1.204},"last":0.81499999999999995}]},{"osd":2,"last update":"Thu Feb 22 22:27:38 2024","interfaces":[{"interface":"back","average":{"1min":1.0369999999999999,"5min":1.03,"15min":1.022},"min":{"1min":0.623,"5min":0.58099999999999996,"15min":0.58099999999999996},"max":{"1min":1.3,"5min":1.7849999999999999,"15min":1.7849999999999999},"last":1.119},{"interface":"front","average":{"1min":1.0069999999999999,"5min":0.93500000000000005,"15min":0.90900000000000003},"min":{"1min":0.78400000000000003,"5min":0.628,"15min":0.628},"max":{"1min":1.3240000000000001,"5min":1.3240000000000001,"15min":1.3240000000000001},"last":0.94299999999999995}]},{"osd":3,"last update":"Thu Feb 22 22:27:49 2024","interfaces":[{"interface":"back","average":{"1min":0.84099999999999997,"5min":0.75800000000000001,"15min":0.72399999999999998},"min":{"1min":0.44600000000000001,"5min":0.44600000000000001,"15min":0.44600000000000001},"max":{"1min":1.159,"5min":1.2689999999999999,"15min":1.2689999999999999},"last":0.98399999999999999},{"interface":"front","average":{"1min":0.83999999999999997,"5min":0.76000000000000001,"15min":0.72199999999999998},"min":{"1min":0.64800000000000002,"5min":0.40100000000000002,"15min":0.40100000000000002},"max":{"1min":1.1200000000000001,"5min":1.1870000000000001,"15min":1.1870000000000001},"last":0.874}]},{"osd":4,"last update":"Thu Feb 22 22:27:41 2024","interfaces":[{"interface":"back","average":{"1min":0.96899999999999997,"5min":0.878,"15min":0.85399999999999998},"min":{"1min":0.80500000000000005,"5min":0.499,"15min":0.499},"max":{"1min":1.2090000000000001,"5min":1.2090000000000001,"15min":1.2090000000000001},"last":1.0800000000000001},{"interface":"front","average":{"1min":1.1060000000000001,"5min":1.026,"15min":1.0049999999999999},"min":{"1min":0.71899999999999997,"5min":0.66100000000000003,"15min":0.66100000000000003},"max":{"1min":1.3440000000000001,"5min":1.3440000000000001,"15min":1.3440000000000001},"last":1.21}]},{"osd":5,"last update":"Thu Feb 22 22:27:58 2024","interfaces":[{"interface":"back","average":{"1min":0.96799999999999997,"5min":0.96399999999999997,"15min":0.93200000000000005},"min":{"1min":0.48799999999999999,"5min":0.48699999999999999,"15min":0.48699999999999999},"max":{"1min":1.3799999999999999,"5min":1.3799999999999999,"15min":1.3799999999999999},"last":1.27},{"interface":"front","average":{"1min":0.92300000000000004,"5min":0.90100000000000002,"15min":0.88700000000000001},"min":{"1min":0.55300000000000005,"5min":0.44,"15min":0.44},"max":{"1min":1.2529999999999999,"5min":1.2529999999999999,"15min":1.2529999999999999},"last":1.0149999999999999}]},{"osd":6,"last update":"Thu Feb 22 22:27:45 2024","interfaces":[{"interface":"back","average":{"1min":1.0980000000000001,"5min":1.034,"15min":1.032},"min":{"1min":0.71999999999999997,"5min":0.71999999999999997,"15min":0.71999999999999997},"max":{"1min":1.3220000000000001,"5min":1.752,"15min":1.752},"last":1.1779999999999999},{"interface":"front","average":{"1min":1.216,"5min":1.2010000000000001,"15min":1.198},"min":{"1min":0.80400000000000005,"5min":0.80400000000000005,"15min":0.80400000000000005},"max":{"1min":1.522,"5min":1.8560000000000001,"15min":1.8560000000000001},"last":1.321}]},{"osd":7,"last update":"Thu Feb 22 22:28:03 2024","interfaces":[{"interface":"back","average":{"1min":1.0940000000000001,"5min":1.026,"15min":1.002},"min":{"1min":0.70799999999999996,"5min":0.621,"15min":0.621},"max":{"1min":1.403,"5min":1.417,"15min":1.417},"last":1.3069999999999999},{"interface":"front","average":{"1min":1.1619999999999999,"5min":1.1539999999999999,"15min":1.1319999999999999},"min":{"1min":0.60299999999999998,"5min":0.60299999999999998,"15min":0.60299999999999998},"max":{"1min":1.4670000000000001,"5min":1.4670000000000001,"15min":1.4670000000000001},"last":1.361}]}]},{"osd":4,"up_from":26,"seq":111669149743,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297504,"kb_used_data":408,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443552,"statfs":{"total":95990841344,"available":95686197248,"internally_reserved":0,"allocated":417792,"data_stored":163187,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu Feb 22 22:27:41 2024","interfaces":[{"interface":"back","average":{"1min":0.66600000000000004,"5min":0.66200000000000003,"15min":0.65400000000000003},"min":{"1min":0.55300000000000005,"5min":0.45100000000000001,"15min":0.45100000000000001},"max":{"1min":1.0329999999999999,"5min":1.0329999999999999,"15min":1.0329999999999999},"last":0.75900000000000001},{"interface":"front","average":{"1min":0.76400000000000001,"5min":0.76100000000000001,"15min":0.75700000000000001},"min":{"1min":0.56399999999999995,"5min":0.51100000000000001,"15min":0.51100000000000001},"max":{"1min":1.0740000000000001,"5min":1.2649999999999999,"15min":1.2649999999999999},"last":0.92000000000000004}]},{"osd":1,"last update":"Thu Feb 22 22:27:41 2024","interfaces":[{"interface":"back","average":{"1min":0.85899999999999999,"5min":0.84999999999999998,"15min":0.83599999999999997},"min":{"1min":0.71599999999999997,"5min":0.624,"15min":0.624},"max":{"1min":1.0369999999999999,"5min":1.5269999999999999,"15min":1.5269999999999999},"last":0.94899999999999995},{"interface":"front","average":{"1min":1.0209999999999999,"5min":0.96599999999999997,"15min":0.93400000000000005},"min":{"1min":0.76000000000000001,"5min":0.63300000000000001,"15min":0.63300000000000001},"max":{"1min":1.3420000000000001,"5min":1.6659999999999999,"15min":1.6659999999999999},"last":0.86899999999999999}]},{"osd":2,"last update":"Thu Feb 22 22:27:41 2024","interfaces":[{"interface":"back","average":{"1min":0.79100000000000004,"5min":0.81799999999999995,"15min":0.82399999999999995},"min":{"1min":0.60399999999999998,"5min":0.51500000000000001,"15min":0.51500000000000001},"max":{"1min":1.0549999999999999,"5min":1.613,"15min":1.613},"last":0.623},{"interface":"front","average":{"1min":0.88400000000000001,"5min":0.90000000000000002,"15min":0.91000000000000003},"min":{"1min":0.68000000000000005,"5min":0.47999999999999998,"15min":0.47999999999999998},"max":{"1min":1.4379999999999999,"5min":1.4379999999999999,"15min":1.4379999999999999},"last":0.67200000000000004}]},{"osd":3,"last update":"Thu Feb 22 22:27:47 2024","interfaces":[{"interface":"back","average":{"1min":0.96299999999999997,"5min":0.96599999999999997,"15min":0.95999999999999996},"min":{"1min":0.78200000000000003,"5min":0.72799999999999998,"15min":0.72799999999999998},"max":{"1min":1.1990000000000001,"5min":1.6240000000000001,"15min":1.6240000000000001},"last":0.88700000000000001},{"interface":"front","average":{"1min":1.143,"5min":1.0920000000000001,"15min":1.0840000000000001},"min":{"1min":0.91000000000000003,"5min":0.78800000000000003,"15min":0.78800000000000003},"max":{"1min":1.71,"5min":1.71,"15min":1.71},"last":1.002}]},{"osd":5,"last update":"Thu Feb 22 22:27:53 2024","interfaces":[{"interface":"back","average":{"1min":1.075,"5min":1.103,"15min":1.103},"min":{"1min":0.84699999999999998,"5min":0.73199999999999998,"15min":0.73199999999999998},"max":{"1min":1.296,"5min":1.841,"15min":1.841},"last":1.0649999999999999},{"interface":"front","average":{"1min":0.95099999999999996,"5min":0.97699999999999998,"15min":0.97299999999999998},"min":{"1min":0.71499999999999997,"5min":0.71499999999999997,"15min":0.71499999999999997},"max":{"1min":1.22,"5min":1.9350000000000001,"15min":1.9350000000000001},"last":1.03}]},{"osd":6,"last update":"Thu Feb 22 22:27:47 2024","interfaces":[{"interface":"back","average":{"1min":0.99099999999999999,"5min":1.0209999999999999,"15min":1.0329999999999999},"min":{"1min":0.70799999999999996,"5min":0.70799999999999996,"15min":0.70799999999999996},"max":{"1min":1.3220000000000001,"5min":1.3220000000000001,"15min":1.3220000000000001},"last":0.98199999999999998},{"interface":"front","average":{"1min":1.0700000000000001,"5min":1.105,"15min":1.1259999999999999},"min":{"1min":0.85299999999999998,"5min":0.63600000000000001,"15min":0.63600000000000001},"max":{"1min":1.325,"5min":1.6000000000000001,"15min":1.6000000000000001},"last":1.1140000000000001}]},{"osd":7,"last update":"Thu Feb 22 22:28:02 2024","interfaces":[{"interface":"back","average":{"1min":1.1699999999999999,"5min":1.151,"15min":1.135},"min":{"1min":0.879,"5min":0.82899999999999996,"15min":0.82899999999999996},"max":{"1min":1.508,"5min":1.9039999999999999,"15min":1.9039999999999999},"last":1.052},{"interface":"front","average":{"1min":1.181,"5min":1.222,"15min":1.228},"min":{"1min":0.996,"5min":0.88,"15min":0.88},"max":{"1min":1.4079999999999999,"5min":2.0470000000000002,"15min":2.0470000000000002},"last":1.1639999999999999}]}]},{"osd":6,"up_from":30,"seq":128849018926,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297508,"kb_used_data":412,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443548,"statfs":{"total":95990841344,"available":95686193152,"internally_reserved":0,"allocated":421888,"data_stored":163502,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu Feb 22 22:27:43 2024","interfaces":[{"interface":"back","average":{"1min":0.69999999999999996,"5min":0.69599999999999995,"15min":0.67800000000000005},"min":{"1min":0.55400000000000005,"5min":0.53900000000000003,"15min":0.53900000000000003},"max":{"1min":1.05,"5min":1.05,"15min":1.05},"last":0.997},{"interface":"front","average":{"1min":0.73799999999999999,"5min":0.745,"15min":0.73499999999999999},"min":{"1min":0.52800000000000002,"5min":0.45500000000000002,"15min":0.45500000000000002},"max":{"1min":1.0149999999999999,"5min":1.1339999999999999,"15min":1.1339999999999999},"last":0.78700000000000003}]},{"osd":1,"last update":"Thu Feb 22 22:27:43 2024","interfaces":[{"interface":"back","average":{"1min":0.80400000000000005,"5min":0.82999999999999996,"15min":0.83299999999999996},"min":{"1min":0.68500000000000005,"5min":0.52300000000000002,"15min":0.52300000000000002},"max":{"1min":0.94999999999999996,"5min":1.4530000000000001,"15min":1.4530000000000001},"last":0.72399999999999998},{"interface":"front","average":{"1min":0.95799999999999996,"5min":0.94999999999999996,"15min":0.95499999999999996},"min":{"1min":0.60199999999999998,"5min":0.60199999999999998,"15min":0.60199999999999998},"max":{"1min":1.238,"5min":1.6240000000000001,"15min":1.6240000000000001},"last":0.67600000000000005}]},{"osd":2,"last update":"Thu Feb 22 22:27:43 2024","interfaces":[{"interface":"back","average":{"1min":0.84899999999999998,"5min":0.83899999999999997,"15min":0.82099999999999995},"min":{"1min":0.63,"5min":0.54700000000000004,"15min":0.54700000000000004},"max":{"1min":1.1359999999999999,"5min":1.163,"15min":1.163},"last":0.76000000000000001},{"interface":"front","average":{"1min":0.85999999999999999,"5min":0.84399999999999997,"15min":0.83999999999999997},"min":{"1min":0.629,"5min":0.54200000000000004,"15min":0.54200000000000004},"max":{"1min":1.2310000000000001,"5min":1.2310000000000001,"15min":1.2310000000000001},"last":1.0489999999999999}]},{"osd":3,"last update":"Thu Feb 22 22:27:48 2024","interfaces":[{"interface":"back","average":{"1min":1.032,"5min":1.012,"15min":1.006},"min":{"1min":0.77300000000000002,"5min":0.73699999999999999,"15min":0.73699999999999999},"max":{"1min":1.425,"5min":1.6870000000000001,"15min":1.6870000000000001},"last":0.89900000000000002},{"interface":"front","average":{"1min":0.95899999999999996,"5min":0.94899999999999995,"15min":0.94399999999999995},"min":{"1min":0.69599999999999995,"5min":0.68400000000000005,"15min":0.68400000000000005},"max":{"1min":1.294,"5min":1.3280000000000001,"15min":1.3280000000000001},"last":0.96099999999999997}]},{"osd":4,"last update":"Thu Feb 22 22:27:43 2024","interfaces":[{"interface":"back","average":{"1min":0.97899999999999998,"5min":0.93000000000000005,"15min":0.91000000000000003},"min":{"1min":0.78400000000000003,"5min":0.66800000000000004,"15min":0.66800000000000004},"max":{"1min":1.23,"5min":1.3149999999999999,"15min":1.3149999999999999},"last":0.91700000000000004},{"interface":"front","average":{"1min":0.94399999999999995,"5min":0.89300000000000002,"15min":0.86899999999999999},"min":{"1min":0.75600000000000001,"5min":0.54500000000000004,"15min":0.54500000000000004},"max":{"1min":1.1599999999999999,"5min":1.3600000000000001,"15min":1.3600000000000001},"last":1.135}]},{"osd":5,"last update":"Thu Feb 22 22:27:53 2024","interfaces":[{"interface":"back","average":{"1min":1.0860000000000001,"5min":1.1200000000000001,"15min":1.1299999999999999},"min":{"1min":0.77300000000000002,"5min":0.73099999999999998,"15min":0.73099999999999998},"max":{"1min":1.4950000000000001,"5min":1.528,"15min":1.528},"last":0.83699999999999997},{"interface":"front","average":{"1min":1.141,"5min":1.131,"15min":1.131},"min":{"1min":0.86599999999999999,"5min":0.84199999999999997,"15min":0.84199999999999997},"max":{"1min":1.536,"5min":1.536,"15min":1.536},"last":1.1619999999999999}]},{"osd":7,"last update":"Thu Feb 22 22:27:57 2024","interfaces":[{"interface":"back","average":{"1min":1.0449999999999999,"5min":1.0609999999999999,"15min":1.0600000000000001},"min":{"1min":0.91800000000000004,"5min":0.60899999999999999,"15min":0.60899999999999999},"max":{"1min":1.1759999999999999,"5min":1.3999999999999999,"15min":1.3999999999999999},"last":1.1950000000000001},{"interface":"front","average":{"1min":1.155,"5min":1.1499999999999999,"15min":1.141},"min":{"1min":0.97699999999999998,"5min":0.71199999999999997,"15min":0.71199999999999997},"max":{"1min":1.5449999999999999,"5min":1.5449999999999999,"15min":1.5449999999999999},"last":1.109}]}]},{"osd":3,"up_from":31,"seq":133143986222,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297504,"kb_used_data":408,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443552,"statfs":{"total":95990841344,"available":95686197248,"internally_reserved":0,"allocated":417792,"data_stored":163187,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu Feb 22 22:27:48 2024","interfaces":[{"interface":"back","average":{"1min":0.873,"5min":0.86499999999999999,"15min":0.86199999999999999},"min":{"1min":0.56200000000000006,"5min":0.56200000000000006,"15min":0.56200000000000006},"max":{"1min":1.355,"5min":1.355,"15min":1.355},"last":1.0600000000000001},{"interface":"front","average":{"1min":0.82499999999999996,"5min":0.89900000000000002,"15min":0.92500000000000004},"min":{"1min":0.57699999999999996,"5min":0.57699999999999996,"15min":0.57699999999999996},"max":{"1min":1.0229999999999999,"5min":1.256,"15min":1.256},"last":1.079}]},{"osd":1,"last update":"Thu Feb 22 22:27:48 2024","interfaces":[{"interface":"back","average":{"1min":0.752,"5min":0.74099999999999999,"15min":0.73499999999999999},"min":{"1min":0.46700000000000003,"5min":0.46700000000000003,"15min":0.46700000000000003},"max":{"1min":1.089,"5min":1.2070000000000001,"15min":1.2070000000000001},"last":0.76100000000000001},{"interface":"front","average":{"1min":0.81999999999999995,"5min":0.746,"15min":0.72599999999999998},"min":{"1min":0.45700000000000002,"5min":0.45700000000000002,"15min":0.45700000000000002},"max":{"1min":1.1240000000000001,"5min":1.2,"15min":1.2},"last":0.83399999999999996}]},{"osd":2,"last update":"Thu Feb 22 22:27:48 2024","interfaces":[{"interface":"back","average":{"1min":1.056,"5min":0.95899999999999996,"15min":0.94499999999999995},"min":{"1min":0.78000000000000003,"5min":0.65400000000000003,"15min":0.65400000000000003},"max":{"1min":1.3740000000000001,"5min":1.3740000000000001,"15min":1.3740000000000001},"last":0.99199999999999999},{"interface":"front","average":{"1min":1.004,"5min":0.93999999999999995,"15min":0.91400000000000003},"min":{"1min":0.71399999999999997,"5min":0.65700000000000003,"15min":0.65700000000000003},"max":{"1min":1.528,"5min":1.528,"15min":1.528},"last":0.92700000000000005}]},{"osd":4,"last update":"Thu Feb 22 22:27:48 2024","interfaces":[{"interface":"back","average":{"1min":1.01,"5min":0.98499999999999999,"15min":0.98499999999999999},"min":{"1min":0.65200000000000002,"5min":0.64600000000000002,"15min":0.64600000000000002},"max":{"1min":1.48,"5min":1.48,"15min":1.48},"last":1.167},{"interface":"front","average":{"1min":1.0620000000000001,"5min":1.014,"15min":0.99199999999999999},"min":{"1min":0.82299999999999995,"5min":0.72299999999999998,"15min":0.72299999999999998},"max":{"1min":1.248,"5min":1.3480000000000001,"15min":1.3480000000000001},"last":1.1339999999999999}]},{"osd":5,"last update":"Thu Feb 22 22:27:53 2024","interfaces":[{"interface":"back","average":{"1min":0.92300000000000004,"5min":0.91100000000000003,"15min":0.91300000000000003},"min":{"1min":0.48799999999999999,"5min":0.45700000000000002,"15min":0.45700000000000002},"max":{"1min":1.214,"5min":1.226,"15min":1.226},"last":1.028},{"interface":"front","average":{"1min":1.0109999999999999,"5min":0.98499999999999999,"15min":0.97599999999999998},"min":{"1min":0.50600000000000001,"5min":0.48699999999999999,"15min":0.48699999999999999},"max":{"1min":1.292,"5min":1.2949999999999999,"15min":1.2949999999999999},"last":1.24}]},{"osd":6,"last update":"Thu Feb 22 22:27:48 2024","interfaces":[{"interface":"back","average":{"1min":1.0489999999999999,"5min":1.0169999999999999,"15min":1.0029999999999999},"min":{"1min":0.83099999999999996,"5min":0.70499999999999996,"15min":0.70499999999999996},"max":{"1min":1.296,"5min":1.3,"15min":1.3},"last":1.3129999999999999},{"interface":"front","average":{"1min":1.1659999999999999,"5min":1.0840000000000001,"15min":1.0620000000000001},"min":{"1min":0.83499999999999996,"5min":0.80800000000000005,"15min":0.80800000000000005},"max":{"1min":1.5409999999999999,"5min":1.5409999999999999,"15min":1.5409999999999999},"last":1.296}]},{"osd":7,"last update":"Thu Feb 22 22:28:05 2024","interfaces":[{"interface":"back","average":{"1min":1.004,"5min":1.0469999999999999,"15min":1.0529999999999999},"min":{"1min":0.626,"5min":0.61399999999999999,"15min":0.61399999999999999},"max":{"1min":1.427,"5min":1.429,"15min":1.429},"last":1.2110000000000001},{"interface":"front","average":{"1min":1.1359999999999999,"5min":1.1319999999999999,"15min":1.133},"min":{"1min":0.56499999999999995,"5min":0.56499999999999995,"15min":0.56499999999999995},"max":{"1min":1.444,"5min":1.444,"15min":1.444},"last":1.377}]}]}],"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-22T22:28:17.566 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph pg dump --format=json 2024-02-22T22:28:18.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:18 smithi195 bash[18068]: audit 2024-02-22T22:28:16.872998+0000 mgr.smithi049.pzczis (mgr.14180) 232 : audit [DBG] from='client.14486 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:28:18.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:18 smithi195 bash[18068]: cluster 2024-02-22T22:28:17.496063+0000 mgr.smithi049.pzczis (mgr.14180) 233 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:18.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:18 smithi049 bash[14150]: audit 2024-02-22T22:28:16.872998+0000 mgr.smithi049.pzczis (mgr.14180) 232 : audit [DBG] from='client.14486 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:28:18.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:18 smithi049 bash[14150]: cluster 2024-02-22T22:28:17.496063+0000 mgr.smithi049.pzczis (mgr.14180) 233 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:20.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:20 smithi049 bash[14150]: cluster 2024-02-22T22:28:19.496710+0000 mgr.smithi049.pzczis (mgr.14180) 234 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:21.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:20 smithi195 bash[18068]: cluster 2024-02-22T22:28:19.496710+0000 mgr.smithi049.pzczis (mgr.14180) 234 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:22.369 INFO:teuthology.orchestra.run.smithi049.stderr:Inferring config /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/mon.smithi049/config 2024-02-22T22:28:22.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:22 smithi049 bash[14150]: cluster 2024-02-22T22:28:21.497355+0000 mgr.smithi049.pzczis (mgr.14180) 235 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:23.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:22 smithi195 bash[18068]: cluster 2024-02-22T22:28:21.497355+0000 mgr.smithi049.pzczis (mgr.14180) 235 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:24.826 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:24 smithi049 bash[14150]: cluster 2024-02-22T22:28:23.497925+0000 mgr.smithi049.pzczis (mgr.14180) 236 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:25.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:24 smithi195 bash[18068]: cluster 2024-02-22T22:28:23.497925+0000 mgr.smithi049.pzczis (mgr.14180) 236 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:25.203 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:28:25.206 INFO:teuthology.orchestra.run.smithi049.stderr:dumped all 2024-02-22T22:28:25.978 INFO:teuthology.orchestra.run.smithi049.stdout:{"pg_ready":true,"pg_map":{"version":219,"stamp":"2024-02-22T22:28:23.497623+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":2380040,"kb_used_data":3272,"kb_used_omap":0,"kb_used_meta":2376704,"kb_avail":747548408,"statfs":{"total":767926730752,"available":765489569792,"internally_reserved":0,"allocated":3350528,"data_stored":1306126,"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":42,"state":"active+clean","last_fresh":"2024-02-22T22:24:58.438896+0000","last_change":"2024-02-22T22:24:58.438896+0000","last_active":"2024-02-22T22:24:58.438896+0000","last_peered":"2024-02-22T22:24:58.438896+0000","last_clean":"2024-02-22T22:24:58.438896+0000","last_became_active":"2024-02-22T22:24:58.438275+0000","last_became_peered":"2024-02-22T22:24:58.438275+0000","last_unstale":"2024-02-22T22:24:58.438896+0000","last_undegraded":"2024-02-22T22:24:58.438896+0000","last_fullsized":"2024-02-22T22:24:58.438896+0000","mapping_epoch":41,"log_start":"0'0","ondisk_log_start":"0'0","created":25,"last_epoch_clean":42,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-02-22T22:24:35.097621+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-02-22T22:24:35.097621+0000","last_clean_scrub_stamp":"2024-02-22T22:24:35.097621+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":40,"seq":171798691884,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297504,"kb_used_data":408,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443552,"statfs":{"total":95990841344,"available":95686197248,"internally_reserved":0,"allocated":417792,"data_stored":163187,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu Feb 22 22:28:00 2024","interfaces":[{"interface":"back","average":{"1min":0.93899999999999995,"5min":0.94999999999999996,"15min":0.95299999999999996},"min":{"1min":0.67800000000000005,"5min":0.67600000000000005,"15min":0.67600000000000005},"max":{"1min":1.246,"5min":1.4219999999999999,"15min":1.4219999999999999},"last":0.66200000000000003},{"interface":"front","average":{"1min":0.92000000000000004,"5min":0.94199999999999995,"15min":0.95199999999999996},"min":{"1min":0.70299999999999996,"5min":0.63400000000000001,"15min":0.63400000000000001},"max":{"1min":1.3520000000000001,"5min":1.4630000000000001,"15min":1.4630000000000001},"last":0.627}]},{"osd":1,"last update":"Thu Feb 22 22:28:00 2024","interfaces":[{"interface":"back","average":{"1min":0.75,"5min":0.76200000000000001,"15min":0.754},"min":{"1min":0.60699999999999998,"5min":0.45000000000000001,"15min":0.45000000000000001},"max":{"1min":1.276,"5min":1.276,"15min":1.276},"last":0.88900000000000001},{"interface":"front","average":{"1min":0.83299999999999996,"5min":0.84499999999999997,"15min":0.85399999999999998},"min":{"1min":0.51500000000000001,"5min":0.51500000000000001,"15min":0.51500000000000001},"max":{"1min":1.054,"5min":1.2749999999999999,"15min":1.2749999999999999},"last":0.86399999999999999}]},{"osd":2,"last update":"Thu Feb 22 22:28:00 2024","interfaces":[{"interface":"back","average":{"1min":0.91800000000000004,"5min":0.89500000000000002,"15min":0.88600000000000001},"min":{"1min":0.66500000000000004,"5min":0.66500000000000004,"15min":0.66500000000000004},"max":{"1min":1.333,"5min":2.2160000000000002,"15min":2.2160000000000002},"last":1.052},{"interface":"front","average":{"1min":0.97199999999999998,"5min":1.012,"15min":1.02},"min":{"1min":0.71099999999999997,"5min":0.61199999999999999,"15min":0.61199999999999999},"max":{"1min":1.2749999999999999,"5min":1.353,"15min":1.353},"last":0.998}]},{"osd":3,"last update":"Thu Feb 22 22:28:00 2024","interfaces":[{"interface":"back","average":{"1min":0.88400000000000001,"5min":0.94799999999999995,"15min":0.97499999999999998},"min":{"1min":0.57199999999999995,"5min":0.54800000000000004,"15min":0.54800000000000004},"max":{"1min":1.232,"5min":1.385,"15min":1.385},"last":1.0189999999999999},{"interface":"front","average":{"1min":0.83899999999999997,"5min":0.90600000000000003,"15min":0.90400000000000003},"min":{"1min":0.52200000000000002,"5min":0.42999999999999999,"15min":0.42999999999999999},"max":{"1min":1.2270000000000001,"5min":1.9350000000000001,"15min":1.9350000000000001},"last":0.77400000000000002}]},{"osd":4,"last update":"Thu Feb 22 22:28:00 2024","interfaces":[{"interface":"back","average":{"1min":0.97599999999999998,"5min":1.028,"15min":1.0369999999999999},"min":{"1min":0.67000000000000004,"5min":0.67000000000000004,"15min":0.67000000000000004},"max":{"1min":1.266,"5min":2.1309999999999998,"15min":2.1309999999999998},"last":1.2050000000000001},{"interface":"front","average":{"1min":1.0860000000000001,"5min":1.1479999999999999,"15min":1.171},"min":{"1min":0.73199999999999998,"5min":0.68000000000000005,"15min":0.68000000000000005},"max":{"1min":1.4399999999999999,"5min":1.708,"15min":1.708},"last":1.1080000000000001}]},{"osd":5,"last update":"Thu Feb 22 22:28:00 2024","interfaces":[{"interface":"back","average":{"1min":1.04,"5min":1.1359999999999999,"15min":1.1639999999999999},"min":{"1min":0.60099999999999998,"5min":0.49399999999999999,"15min":0.49399999999999999},"max":{"1min":1.524,"5min":1.8140000000000001,"15min":1.8140000000000001},"last":1.171},{"interface":"front","average":{"1min":1.105,"5min":1.159,"15min":1.181},"min":{"1min":0.57099999999999995,"5min":0.55900000000000005,"15min":0.55900000000000005},"max":{"1min":1.5489999999999999,"5min":1.7410000000000001,"15min":1.7410000000000001},"last":1.133}]},{"osd":6,"last update":"Thu Feb 22 22:28:00 2024","interfaces":[{"interface":"back","average":{"1min":1.2190000000000001,"5min":1.2529999999999999,"15min":1.274},"min":{"1min":0.83599999999999997,"5min":0.83599999999999997,"15min":0.83599999999999997},"max":{"1min":1.623,"5min":2.0430000000000001,"15min":2.0430000000000001},"last":1.1910000000000001},{"interface":"front","average":{"1min":1.093,"5min":1.1499999999999999,"15min":1.157},"min":{"1min":0.71599999999999997,"5min":0.68999999999999995,"15min":0.68999999999999995},"max":{"1min":1.4690000000000001,"5min":2.1789999999999998,"15min":2.1789999999999998},"last":1.296}]}]},{"osd":5,"up_from":36,"seq":154618822701,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297504,"kb_used_data":408,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443552,"statfs":{"total":95990841344,"available":95686197248,"internally_reserved":0,"allocated":417792,"data_stored":163187,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu Feb 22 22:27:50 2024","interfaces":[{"interface":"back","average":{"1min":0.85999999999999999,"5min":0.876,"15min":0.88100000000000001},"min":{"1min":0.65700000000000003,"5min":0.56399999999999995,"15min":0.56399999999999995},"max":{"1min":1.3600000000000001,"5min":2.9500000000000002,"15min":2.9500000000000002},"last":1.109},{"interface":"front","average":{"1min":0.88600000000000001,"5min":0.92200000000000004,"15min":0.93400000000000005},"min":{"1min":0.71199999999999997,"5min":0.53900000000000003,"15min":0.53900000000000003},"max":{"1min":1.0800000000000001,"5min":4.5419999999999998,"15min":4.5419999999999998},"last":0.65000000000000002}]},{"osd":1,"last update":"Thu Feb 22 22:27:50 2024","interfaces":[{"interface":"back","average":{"1min":0.72599999999999998,"5min":0.82199999999999995,"15min":0.85199999999999998},"min":{"1min":0.51900000000000002,"5min":0.40699999999999997,"15min":0.40699999999999997},"max":{"1min":1.0860000000000001,"5min":3.508,"15min":3.508},"last":0.48199999999999998},{"interface":"front","average":{"1min":0.73799999999999999,"5min":0.77900000000000003,"15min":0.78100000000000003},"min":{"1min":0.51800000000000002,"5min":0.45400000000000001,"15min":0.45400000000000001},"max":{"1min":1.0169999999999999,"5min":2.1059999999999999,"15min":2.1059999999999999},"last":0.54400000000000004}]},{"osd":2,"last update":"Thu Feb 22 22:27:50 2024","interfaces":[{"interface":"back","average":{"1min":0.94399999999999995,"5min":0.97999999999999998,"15min":1},"min":{"1min":0.55000000000000004,"5min":0.55000000000000004,"15min":0.55000000000000004},"max":{"1min":1.1919999999999999,"5min":2.1850000000000001,"15min":2.1850000000000001},"last":0.97499999999999998},{"interface":"front","average":{"1min":0.95999999999999996,"5min":1.036,"15min":1.0620000000000001},"min":{"1min":0.71999999999999997,"5min":0.67600000000000005,"15min":0.67600000000000005},"max":{"1min":1.218,"5min":3.9900000000000002,"15min":3.9900000000000002},"last":1.0349999999999999}]},{"osd":3,"last update":"Thu Feb 22 22:27:50 2024","interfaces":[{"interface":"back","average":{"1min":0.85499999999999998,"5min":0.92700000000000005,"15min":0.96099999999999997},"min":{"1min":0.58199999999999996,"5min":0.49199999999999999,"15min":0.49199999999999999},"max":{"1min":1.1870000000000001,"5min":3.8660000000000001,"15min":3.8660000000000001},"last":0.61299999999999999},{"interface":"front","average":{"1min":0.875,"5min":0.98499999999999999,"15min":1.016},"min":{"1min":0.48099999999999998,"5min":0.48099999999999998,"15min":0.48099999999999998},"max":{"1min":1.2410000000000001,"5min":3.0270000000000001,"15min":3.0270000000000001},"last":1.0920000000000001}]},{"osd":4,"last update":"Thu Feb 22 22:27:50 2024","interfaces":[{"interface":"back","average":{"1min":1.0069999999999999,"5min":1.081,"15min":1.099},"min":{"1min":0.74099999999999999,"5min":0.63,"15min":0.63},"max":{"1min":1.5529999999999999,"5min":3.9449999999999998,"15min":3.9449999999999998},"last":0.86799999999999999},{"interface":"front","average":{"1min":1.008,"5min":1.087,"15min":1.1060000000000001},"min":{"1min":0.56899999999999995,"5min":0.56899999999999995,"15min":0.56899999999999995},"max":{"1min":1.2729999999999999,"5min":2.573,"15min":2.573},"last":0.77500000000000002}]},{"osd":6,"last update":"Thu Feb 22 22:27:50 2024","interfaces":[{"interface":"back","average":{"1min":1.1040000000000001,"5min":1.159,"15min":1.1830000000000001},"min":{"1min":0.81399999999999995,"5min":0.71499999999999997,"15min":0.71499999999999997},"max":{"1min":1.3740000000000001,"5min":4.3479999999999999,"15min":4.3479999999999999},"last":0.91000000000000003},{"interface":"front","average":{"1min":1.1359999999999999,"5min":1.1579999999999999,"15min":1.1699999999999999},"min":{"1min":0.80700000000000005,"5min":0.69099999999999995,"15min":0.69099999999999995},"max":{"1min":1.776,"5min":3.7719999999999998,"15min":3.7719999999999998},"last":1.0049999999999999}]},{"osd":7,"last update":"Thu Feb 22 22:28:02 2024","interfaces":[{"interface":"back","average":{"1min":1.0229999999999999,"5min":1.0580000000000001,"15min":1.056},"min":{"1min":0.41999999999999998,"5min":0.41999999999999998,"15min":0.41999999999999998},"max":{"1min":1.3109999999999999,"5min":1.472,"15min":1.472},"last":1.1779999999999999},{"interface":"front","average":{"1min":1.135,"5min":1.089,"15min":1.079},"min":{"1min":0.75,"5min":0.66300000000000003,"15min":0.66300000000000003},"max":{"1min":1.5,"5min":1.5,"15min":1.5},"last":1.1379999999999999}]}]},{"osd":2,"up_from":20,"seq":85899345969,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297504,"kb_used_data":408,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443552,"statfs":{"total":95990841344,"available":95686197248,"internally_reserved":0,"allocated":417792,"data_stored":163187,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu Feb 22 22:27:36 2024","interfaces":[{"interface":"back","average":{"1min":0.68300000000000005,"5min":0.65300000000000002,"15min":0.63200000000000001},"min":{"1min":0.56399999999999995,"5min":0.49299999999999999,"15min":0.49299999999999999},"max":{"1min":1.103,"5min":1.103,"15min":1.103},"last":0.52700000000000002},{"interface":"front","average":{"1min":0.76400000000000001,"5min":0.72699999999999998,"15min":0.71499999999999997},"min":{"1min":0.52800000000000002,"5min":0.42299999999999999,"15min":0.42299999999999999},"max":{"1min":1.0840000000000001,"5min":1.165,"15min":1.165},"last":0.94099999999999995}]},{"osd":1,"last update":"Thu Feb 22 22:27:42 2024","interfaces":[{"interface":"back","average":{"1min":0.94499999999999995,"5min":0.90100000000000002,"15min":0.875},"min":{"1min":0.69099999999999995,"5min":0.56899999999999995,"15min":0.56899999999999995},"max":{"1min":1.1459999999999999,"5min":1.224,"15min":1.224},"last":1.0620000000000001},{"interface":"front","average":{"1min":0.996,"5min":0.94999999999999996,"15min":0.93300000000000005},"min":{"1min":0.54000000000000004,"5min":0.54000000000000004,"15min":0.54000000000000004},"max":{"1min":1.3340000000000001,"5min":1.3340000000000001,"15min":1.3340000000000001},"last":0.68200000000000005}]},{"osd":3,"last update":"Thu Feb 22 22:27:46 2024","interfaces":[{"interface":"back","average":{"1min":1.016,"5min":0.97199999999999998,"15min":0.96399999999999997},"min":{"1min":0.77000000000000002,"5min":0.63800000000000001,"15min":0.63800000000000001},"max":{"1min":1.2250000000000001,"5min":1.3680000000000001,"15min":1.3680000000000001},"last":1.1020000000000001},{"interface":"front","average":{"1min":1.0409999999999999,"5min":0.97499999999999998,"15min":0.95899999999999996},"min":{"1min":0.749,"5min":0.70799999999999996,"15min":0.70799999999999996},"max":{"1min":1.3879999999999999,"5min":1.3879999999999999,"15min":1.3879999999999999},"last":0.97499999999999998}]},{"osd":4,"last update":"Thu Feb 22 22:27:42 2024","interfaces":[{"interface":"back","average":{"1min":0.83399999999999996,"5min":0.85999999999999999,"15min":0.86399999999999999},"min":{"1min":0.59999999999999998,"5min":0.59999999999999998,"15min":0.59999999999999998},"max":{"1min":0.996,"5min":1.1539999999999999,"15min":1.1539999999999999},"last":0.80700000000000005},{"interface":"front","average":{"1min":0.86399999999999999,"5min":0.82099999999999995,"15min":0.79700000000000004},"min":{"1min":0.70399999999999996,"5min":0.51600000000000001,"15min":0.51600000000000001},"max":{"1min":1.0649999999999999,"5min":1.3380000000000001,"15min":1.3380000000000001},"last":0.91300000000000003}]},{"osd":5,"last update":"Thu Feb 22 22:27:58 2024","interfaces":[{"interface":"back","average":{"1min":1.081,"5min":1.0329999999999999,"15min":1.0229999999999999},"min":{"1min":0.86599999999999999,"5min":0.72999999999999998,"15min":0.72999999999999998},"max":{"1min":1.266,"5min":1.3200000000000001,"15min":1.3200000000000001},"last":0.88200000000000001},{"interface":"front","average":{"1min":1.0049999999999999,"5min":1,"15min":1.0049999999999999},"min":{"1min":0.77800000000000002,"5min":0.77800000000000002,"15min":0.77800000000000002},"max":{"1min":1.2549999999999999,"5min":1.4670000000000001,"15min":1.4670000000000001},"last":0.73299999999999998}]},{"osd":6,"last update":"Thu Feb 22 22:27:46 2024","interfaces":[{"interface":"back","average":{"1min":1.0960000000000001,"5min":0.99399999999999999,"15min":0.95799999999999996},"min":{"1min":0.91700000000000004,"5min":0.624,"15min":0.624},"max":{"1min":1.2889999999999999,"5min":1.425,"15min":1.425},"last":0.85599999999999998},{"interface":"front","average":{"1min":1.1579999999999999,"5min":1.1240000000000001,"15min":1.1140000000000001},"min":{"1min":0.91600000000000004,"5min":0.78400000000000003,"15min":0.78400000000000003},"max":{"1min":1.4359999999999999,"5min":1.4359999999999999,"15min":1.4359999999999999},"last":1.036}]},{"osd":7,"last update":"Thu Feb 22 22:28:06 2024","interfaces":[{"interface":"back","average":{"1min":1.1259999999999999,"5min":1.069,"15min":1.0549999999999999},"min":{"1min":0.98099999999999998,"5min":0.81200000000000006,"15min":0.81200000000000006},"max":{"1min":1.5600000000000001,"5min":1.583,"15min":1.583},"last":0.82099999999999995},{"interface":"front","average":{"1min":1.208,"5min":1.1399999999999999,"15min":1.1240000000000001},"min":{"1min":1.0960000000000001,"5min":0.76400000000000001,"15min":0.76400000000000001},"max":{"1min":1.6240000000000001,"5min":1.847,"15min":1.847},"last":1.016}]}]},{"osd":0,"up_from":16,"seq":68719476787,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297504,"kb_used_data":408,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443552,"statfs":{"total":95990841344,"available":95686197248,"internally_reserved":0,"allocated":417792,"data_stored":163187,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":1,"last update":"Thu Feb 22 22:27:41 2024","interfaces":[{"interface":"back","average":{"1min":0.83499999999999996,"5min":0.86899999999999999,"15min":0.87},"min":{"1min":0.51800000000000002,"5min":0.51800000000000002,"15min":0.51800000000000002},"max":{"1min":1.165,"5min":1.5780000000000001,"15min":1.5780000000000001},"last":0.877},{"interface":"front","average":{"1min":0.86299999999999999,"5min":0.89800000000000002,"15min":0.90200000000000002},"min":{"1min":0.56399999999999995,"5min":0.56399999999999995,"15min":0.56399999999999995},"max":{"1min":1.262,"5min":1.5649999999999999,"15min":1.5649999999999999},"last":0.81799999999999995}]},{"osd":2,"last update":"Thu Feb 22 22:27:41 2024","interfaces":[{"interface":"back","average":{"1min":0.79100000000000004,"5min":0.80000000000000004,"15min":0.80000000000000004},"min":{"1min":0.59099999999999997,"5min":0.57599999999999996,"15min":0.57599999999999996},"max":{"1min":1.079,"5min":1.1739999999999999,"15min":1.1739999999999999},"last":0.64500000000000002},{"interface":"front","average":{"1min":0.82799999999999996,"5min":0.81000000000000005,"15min":0.81599999999999995},"min":{"1min":0.53500000000000003,"5min":0.53500000000000003,"15min":0.53500000000000003},"max":{"1min":1.083,"5min":1.129,"15min":1.129},"last":0.70399999999999996}]},{"osd":3,"last update":"Thu Feb 22 22:27:51 2024","interfaces":[{"interface":"back","average":{"1min":0.92000000000000004,"5min":0.96699999999999997,"15min":0.98699999999999999},"min":{"1min":0.64000000000000001,"5min":0.64000000000000001,"15min":0.64000000000000001},"max":{"1min":1.2010000000000001,"5min":1.3819999999999999,"15min":1.3819999999999999},"last":0.74099999999999999},{"interface":"front","average":{"1min":0.97199999999999998,"5min":0.97699999999999998,"15min":0.97099999999999997},"min":{"1min":0.73599999999999999,"5min":0.64700000000000002,"15min":0.64700000000000002},"max":{"1min":1.288,"5min":1.302,"15min":1.302},"last":0.97999999999999998}]},{"osd":4,"last update":"Thu Feb 22 22:27:41 2024","interfaces":[{"interface":"back","average":{"1min":0.88700000000000001,"5min":0.84199999999999997,"15min":0.83299999999999996},"min":{"1min":0.48999999999999999,"5min":0.48999999999999999,"15min":0.48999999999999999},"max":{"1min":1.202,"5min":1.202,"15min":1.202},"last":0.85199999999999998},{"interface":"front","average":{"1min":0.89900000000000002,"5min":0.91600000000000004,"15min":0.91900000000000004},"min":{"1min":0.61799999999999999,"5min":0.59199999999999997,"15min":0.59199999999999997},"max":{"1min":1.1699999999999999,"5min":1.2849999999999999,"15min":1.2849999999999999},"last":0.96299999999999997}]},{"osd":5,"last update":"Thu Feb 22 22:27:51 2024","interfaces":[{"interface":"back","average":{"1min":1.0069999999999999,"5min":1.048,"15min":1.0660000000000001},"min":{"1min":0.748,"5min":0.748,"15min":0.748},"max":{"1min":1.3300000000000001,"5min":1.379,"15min":1.379},"last":1.0349999999999999},{"interface":"front","average":{"1min":1.0509999999999999,"5min":1.095,"15min":1.1160000000000001},"min":{"1min":0.73999999999999999,"5min":0.73999999999999999,"15min":0.73999999999999999},"max":{"1min":1.474,"5min":1.4770000000000001,"15min":1.4770000000000001},"last":1.0840000000000001}]},{"osd":6,"last update":"Thu Feb 22 22:27:51 2024","interfaces":[{"interface":"back","average":{"1min":1.03,"5min":1.026,"15min":1.0269999999999999},"min":{"1min":0.69199999999999995,"5min":0.66800000000000004,"15min":0.66800000000000004},"max":{"1min":1.25,"5min":1.353,"15min":1.353},"last":1.196},{"interface":"front","average":{"1min":1.0880000000000001,"5min":1.137,"15min":1.149},"min":{"1min":0.80300000000000005,"5min":0.80300000000000005,"15min":0.80300000000000005},"max":{"1min":1.393,"5min":1.5329999999999999,"15min":1.5329999999999999},"last":1.117}]},{"osd":7,"last update":"Thu Feb 22 22:28:07 2024","interfaces":[{"interface":"back","average":{"1min":1.1000000000000001,"5min":1.1830000000000001,"15min":1.2170000000000001},"min":{"1min":0.70799999999999996,"5min":0.70799999999999996,"15min":0.70799999999999996},"max":{"1min":1.478,"5min":1.663,"15min":1.663},"last":1.173},{"interface":"front","average":{"1min":1.204,"5min":1.1830000000000001,"15min":1.2},"min":{"1min":0.80800000000000005,"5min":0.748,"15min":0.748},"max":{"1min":2.2269999999999999,"5min":2.2269999999999999,"15min":2.2269999999999999},"last":1.294}]}]},{"osd":1,"up_from":24,"seq":103079215152,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297508,"kb_used_data":412,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443548,"statfs":{"total":95990841344,"available":95686193152,"internally_reserved":0,"allocated":421888,"data_stored":163502,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu Feb 22 22:27:38 2024","interfaces":[{"interface":"back","average":{"1min":0.91200000000000003,"5min":0.92100000000000004,"15min":0.92500000000000004},"min":{"1min":0.70499999999999996,"5min":0.54200000000000004,"15min":0.54200000000000004},"max":{"1min":1.226,"5min":1.659,"15min":1.659},"last":0.90900000000000003},{"interface":"front","average":{"1min":0.89400000000000002,"5min":0.83799999999999997,"15min":0.80900000000000005},"min":{"1min":0.70899999999999996,"5min":0.57899999999999996,"15min":0.57899999999999996},"max":{"1min":1.204,"5min":1.204,"15min":1.204},"last":0.95799999999999996}]},{"osd":2,"last update":"Thu Feb 22 22:27:38 2024","interfaces":[{"interface":"back","average":{"1min":1.0369999999999999,"5min":1.03,"15min":1.022},"min":{"1min":0.623,"5min":0.58099999999999996,"15min":0.58099999999999996},"max":{"1min":1.3,"5min":1.7849999999999999,"15min":1.7849999999999999},"last":1.2709999999999999},{"interface":"front","average":{"1min":1.0069999999999999,"5min":0.93500000000000005,"15min":0.90900000000000003},"min":{"1min":0.78400000000000003,"5min":0.628,"15min":0.628},"max":{"1min":1.3240000000000001,"5min":1.3240000000000001,"15min":1.3240000000000001},"last":1.371}]},{"osd":3,"last update":"Thu Feb 22 22:27:49 2024","interfaces":[{"interface":"back","average":{"1min":0.84099999999999997,"5min":0.75800000000000001,"15min":0.72399999999999998},"min":{"1min":0.44600000000000001,"5min":0.44600000000000001,"15min":0.44600000000000001},"max":{"1min":1.159,"5min":1.2689999999999999,"15min":1.2689999999999999},"last":1},{"interface":"front","average":{"1min":0.83999999999999997,"5min":0.76000000000000001,"15min":0.72199999999999998},"min":{"1min":0.64800000000000002,"5min":0.40100000000000002,"15min":0.40100000000000002},"max":{"1min":1.1200000000000001,"5min":1.1870000000000001,"15min":1.1870000000000001},"last":1.077}]},{"osd":4,"last update":"Thu Feb 22 22:27:41 2024","interfaces":[{"interface":"back","average":{"1min":0.96899999999999997,"5min":0.878,"15min":0.85399999999999998},"min":{"1min":0.80500000000000005,"5min":0.499,"15min":0.499},"max":{"1min":1.2090000000000001,"5min":1.2090000000000001,"15min":1.2090000000000001},"last":0.86499999999999999},{"interface":"front","average":{"1min":1.1060000000000001,"5min":1.026,"15min":1.0049999999999999},"min":{"1min":0.71899999999999997,"5min":0.66100000000000003,"15min":0.66100000000000003},"max":{"1min":1.3440000000000001,"5min":1.3440000000000001,"15min":1.3440000000000001},"last":1.405}]},{"osd":5,"last update":"Thu Feb 22 22:27:58 2024","interfaces":[{"interface":"back","average":{"1min":0.96799999999999997,"5min":0.96399999999999997,"15min":0.93200000000000005},"min":{"1min":0.48799999999999999,"5min":0.48699999999999999,"15min":0.48699999999999999},"max":{"1min":1.3799999999999999,"5min":1.3799999999999999,"15min":1.3799999999999999},"last":1.482},{"interface":"front","average":{"1min":0.92300000000000004,"5min":0.90100000000000002,"15min":0.88700000000000001},"min":{"1min":0.55300000000000005,"5min":0.44,"15min":0.44},"max":{"1min":1.2529999999999999,"5min":1.2529999999999999,"15min":1.2529999999999999},"last":1.2390000000000001}]},{"osd":6,"last update":"Thu Feb 22 22:27:45 2024","interfaces":[{"interface":"back","average":{"1min":1.0980000000000001,"5min":1.034,"15min":1.032},"min":{"1min":0.71999999999999997,"5min":0.71999999999999997,"15min":0.71999999999999997},"max":{"1min":1.3220000000000001,"5min":1.752,"15min":1.752},"last":1.214},{"interface":"front","average":{"1min":1.216,"5min":1.2010000000000001,"15min":1.198},"min":{"1min":0.80400000000000005,"5min":0.80400000000000005,"15min":0.80400000000000005},"max":{"1min":1.522,"5min":1.8560000000000001,"15min":1.8560000000000001},"last":1.5269999999999999}]},{"osd":7,"last update":"Thu Feb 22 22:28:03 2024","interfaces":[{"interface":"back","average":{"1min":1.0940000000000001,"5min":1.026,"15min":1.002},"min":{"1min":0.70799999999999996,"5min":0.621,"15min":0.621},"max":{"1min":1.403,"5min":1.417,"15min":1.417},"last":1.1299999999999999},{"interface":"front","average":{"1min":1.1619999999999999,"5min":1.1539999999999999,"15min":1.1319999999999999},"min":{"1min":0.60299999999999998,"5min":0.60299999999999998,"15min":0.60299999999999998},"max":{"1min":1.4670000000000001,"5min":1.4670000000000001,"15min":1.4670000000000001},"last":1.575}]}]},{"osd":4,"up_from":26,"seq":111669149745,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297504,"kb_used_data":408,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443552,"statfs":{"total":95990841344,"available":95686197248,"internally_reserved":0,"allocated":417792,"data_stored":163187,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu Feb 22 22:27:41 2024","interfaces":[{"interface":"back","average":{"1min":0.66600000000000004,"5min":0.66200000000000003,"15min":0.65400000000000003},"min":{"1min":0.55300000000000005,"5min":0.45100000000000001,"15min":0.45100000000000001},"max":{"1min":1.0329999999999999,"5min":1.0329999999999999,"15min":1.0329999999999999},"last":0.66000000000000003},{"interface":"front","average":{"1min":0.76400000000000001,"5min":0.76100000000000001,"15min":0.75700000000000001},"min":{"1min":0.56399999999999995,"5min":0.51100000000000001,"15min":0.51100000000000001},"max":{"1min":1.0740000000000001,"5min":1.2649999999999999,"15min":1.2649999999999999},"last":0.82099999999999995}]},{"osd":1,"last update":"Thu Feb 22 22:27:41 2024","interfaces":[{"interface":"back","average":{"1min":0.85899999999999999,"5min":0.84999999999999998,"15min":0.83599999999999997},"min":{"1min":0.71599999999999997,"5min":0.624,"15min":0.624},"max":{"1min":1.0369999999999999,"5min":1.5269999999999999,"15min":1.5269999999999999},"last":0.98499999999999999},{"interface":"front","average":{"1min":1.0209999999999999,"5min":0.96599999999999997,"15min":0.93400000000000005},"min":{"1min":0.76000000000000001,"5min":0.63300000000000001,"15min":0.63300000000000001},"max":{"1min":1.3420000000000001,"5min":1.6659999999999999,"15min":1.6659999999999999},"last":1.105}]},{"osd":2,"last update":"Thu Feb 22 22:27:41 2024","interfaces":[{"interface":"back","average":{"1min":0.79100000000000004,"5min":0.81799999999999995,"15min":0.82399999999999995},"min":{"1min":0.60399999999999998,"5min":0.51500000000000001,"15min":0.51500000000000001},"max":{"1min":1.0549999999999999,"5min":1.613,"15min":1.613},"last":0.73499999999999999},{"interface":"front","average":{"1min":0.88400000000000001,"5min":0.90000000000000002,"15min":0.91000000000000003},"min":{"1min":0.68000000000000005,"5min":0.47999999999999998,"15min":0.47999999999999998},"max":{"1min":1.4379999999999999,"5min":1.4379999999999999,"15min":1.4379999999999999},"last":0.753}]},{"osd":3,"last update":"Thu Feb 22 22:27:47 2024","interfaces":[{"interface":"back","average":{"1min":0.96299999999999997,"5min":0.96599999999999997,"15min":0.95999999999999996},"min":{"1min":0.78200000000000003,"5min":0.72799999999999998,"15min":0.72799999999999998},"max":{"1min":1.1990000000000001,"5min":1.6240000000000001,"15min":1.6240000000000001},"last":0.88100000000000001},{"interface":"front","average":{"1min":1.143,"5min":1.0920000000000001,"15min":1.0840000000000001},"min":{"1min":0.91000000000000003,"5min":0.78800000000000003,"15min":0.78800000000000003},"max":{"1min":1.71,"5min":1.71,"15min":1.71},"last":1.008}]},{"osd":5,"last update":"Thu Feb 22 22:27:53 2024","interfaces":[{"interface":"back","average":{"1min":1.075,"5min":1.103,"15min":1.103},"min":{"1min":0.84699999999999998,"5min":0.73199999999999998,"15min":0.73199999999999998},"max":{"1min":1.296,"5min":1.841,"15min":1.841},"last":0.92100000000000004},{"interface":"front","average":{"1min":0.95099999999999996,"5min":0.97699999999999998,"15min":0.97299999999999998},"min":{"1min":0.71499999999999997,"5min":0.71499999999999997,"15min":0.71499999999999997},"max":{"1min":1.22,"5min":1.9350000000000001,"15min":1.9350000000000001},"last":1.1659999999999999}]},{"osd":6,"last update":"Thu Feb 22 22:27:47 2024","interfaces":[{"interface":"back","average":{"1min":0.99099999999999999,"5min":1.0209999999999999,"15min":1.0329999999999999},"min":{"1min":0.70799999999999996,"5min":0.70799999999999996,"15min":0.70799999999999996},"max":{"1min":1.3220000000000001,"5min":1.3220000000000001,"15min":1.3220000000000001},"last":0.96099999999999997},{"interface":"front","average":{"1min":1.0700000000000001,"5min":1.105,"15min":1.1259999999999999},"min":{"1min":0.85299999999999998,"5min":0.63600000000000001,"15min":0.63600000000000001},"max":{"1min":1.325,"5min":1.6000000000000001,"15min":1.6000000000000001},"last":1.0569999999999999}]},{"osd":7,"last update":"Thu Feb 22 22:28:02 2024","interfaces":[{"interface":"back","average":{"1min":1.1699999999999999,"5min":1.151,"15min":1.135},"min":{"1min":0.879,"5min":0.82899999999999996,"15min":0.82899999999999996},"max":{"1min":1.508,"5min":1.9039999999999999,"15min":1.9039999999999999},"last":1.2110000000000001},{"interface":"front","average":{"1min":1.181,"5min":1.222,"15min":1.228},"min":{"1min":0.996,"5min":0.88,"15min":0.88},"max":{"1min":1.4079999999999999,"5min":2.0470000000000002,"15min":2.0470000000000002},"last":1.151}]}]},{"osd":6,"up_from":30,"seq":128849018927,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297508,"kb_used_data":412,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443548,"statfs":{"total":95990841344,"available":95686193152,"internally_reserved":0,"allocated":421888,"data_stored":163502,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu Feb 22 22:27:43 2024","interfaces":[{"interface":"back","average":{"1min":0.69999999999999996,"5min":0.69599999999999995,"15min":0.67800000000000005},"min":{"1min":0.55400000000000005,"5min":0.53900000000000003,"15min":0.53900000000000003},"max":{"1min":1.05,"5min":1.05,"15min":1.05},"last":0.997},{"interface":"front","average":{"1min":0.73799999999999999,"5min":0.745,"15min":0.73499999999999999},"min":{"1min":0.52800000000000002,"5min":0.45500000000000002,"15min":0.45500000000000002},"max":{"1min":1.0149999999999999,"5min":1.1339999999999999,"15min":1.1339999999999999},"last":0.78700000000000003}]},{"osd":1,"last update":"Thu Feb 22 22:27:43 2024","interfaces":[{"interface":"back","average":{"1min":0.80400000000000005,"5min":0.82999999999999996,"15min":0.83299999999999996},"min":{"1min":0.68500000000000005,"5min":0.52300000000000002,"15min":0.52300000000000002},"max":{"1min":0.94999999999999996,"5min":1.4530000000000001,"15min":1.4530000000000001},"last":0.72399999999999998},{"interface":"front","average":{"1min":0.95799999999999996,"5min":0.94999999999999996,"15min":0.95499999999999996},"min":{"1min":0.60199999999999998,"5min":0.60199999999999998,"15min":0.60199999999999998},"max":{"1min":1.238,"5min":1.6240000000000001,"15min":1.6240000000000001},"last":0.67600000000000005}]},{"osd":2,"last update":"Thu Feb 22 22:27:43 2024","interfaces":[{"interface":"back","average":{"1min":0.84899999999999998,"5min":0.83899999999999997,"15min":0.82099999999999995},"min":{"1min":0.63,"5min":0.54700000000000004,"15min":0.54700000000000004},"max":{"1min":1.1359999999999999,"5min":1.163,"15min":1.163},"last":0.76000000000000001},{"interface":"front","average":{"1min":0.85999999999999999,"5min":0.84399999999999997,"15min":0.83999999999999997},"min":{"1min":0.629,"5min":0.54200000000000004,"15min":0.54200000000000004},"max":{"1min":1.2310000000000001,"5min":1.2310000000000001,"15min":1.2310000000000001},"last":1.0489999999999999}]},{"osd":3,"last update":"Thu Feb 22 22:27:48 2024","interfaces":[{"interface":"back","average":{"1min":1.032,"5min":1.012,"15min":1.006},"min":{"1min":0.77300000000000002,"5min":0.73699999999999999,"15min":0.73699999999999999},"max":{"1min":1.425,"5min":1.6870000000000001,"15min":1.6870000000000001},"last":0.89900000000000002},{"interface":"front","average":{"1min":0.95899999999999996,"5min":0.94899999999999995,"15min":0.94399999999999995},"min":{"1min":0.69599999999999995,"5min":0.68400000000000005,"15min":0.68400000000000005},"max":{"1min":1.294,"5min":1.3280000000000001,"15min":1.3280000000000001},"last":0.96099999999999997}]},{"osd":4,"last update":"Thu Feb 22 22:27:43 2024","interfaces":[{"interface":"back","average":{"1min":0.97899999999999998,"5min":0.93000000000000005,"15min":0.91000000000000003},"min":{"1min":0.78400000000000003,"5min":0.66800000000000004,"15min":0.66800000000000004},"max":{"1min":1.23,"5min":1.3149999999999999,"15min":1.3149999999999999},"last":0.91700000000000004},{"interface":"front","average":{"1min":0.94399999999999995,"5min":0.89300000000000002,"15min":0.86899999999999999},"min":{"1min":0.75600000000000001,"5min":0.54500000000000004,"15min":0.54500000000000004},"max":{"1min":1.1599999999999999,"5min":1.3600000000000001,"15min":1.3600000000000001},"last":1.135}]},{"osd":5,"last update":"Thu Feb 22 22:27:53 2024","interfaces":[{"interface":"back","average":{"1min":1.0860000000000001,"5min":1.1200000000000001,"15min":1.1299999999999999},"min":{"1min":0.77300000000000002,"5min":0.73099999999999998,"15min":0.73099999999999998},"max":{"1min":1.4950000000000001,"5min":1.528,"15min":1.528},"last":0.83699999999999997},{"interface":"front","average":{"1min":1.141,"5min":1.131,"15min":1.131},"min":{"1min":0.86599999999999999,"5min":0.84199999999999997,"15min":0.84199999999999997},"max":{"1min":1.536,"5min":1.536,"15min":1.536},"last":1.1619999999999999}]},{"osd":7,"last update":"Thu Feb 22 22:27:57 2024","interfaces":[{"interface":"back","average":{"1min":1.0449999999999999,"5min":1.0609999999999999,"15min":1.0600000000000001},"min":{"1min":0.91800000000000004,"5min":0.60899999999999999,"15min":0.60899999999999999},"max":{"1min":1.1759999999999999,"5min":1.3999999999999999,"15min":1.3999999999999999},"last":1.1950000000000001},{"interface":"front","average":{"1min":1.155,"5min":1.1499999999999999,"15min":1.141},"min":{"1min":0.97699999999999998,"5min":0.71199999999999997,"15min":0.71199999999999997},"max":{"1min":1.5449999999999999,"5min":1.5449999999999999,"15min":1.5449999999999999},"last":1.109}]}]},{"osd":3,"up_from":31,"seq":133143986224,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297504,"kb_used_data":408,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443552,"statfs":{"total":95990841344,"available":95686197248,"internally_reserved":0,"allocated":417792,"data_stored":163187,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu Feb 22 22:27:48 2024","interfaces":[{"interface":"back","average":{"1min":0.873,"5min":0.86499999999999999,"15min":0.86199999999999999},"min":{"1min":0.56200000000000006,"5min":0.56200000000000006,"15min":0.56200000000000006},"max":{"1min":1.355,"5min":1.355,"15min":1.355},"last":0.97399999999999998},{"interface":"front","average":{"1min":0.82499999999999996,"5min":0.89900000000000002,"15min":0.92500000000000004},"min":{"1min":0.57699999999999996,"5min":0.57699999999999996,"15min":0.57699999999999996},"max":{"1min":1.0229999999999999,"5min":1.256,"15min":1.256},"last":1.0289999999999999}]},{"osd":1,"last update":"Thu Feb 22 22:27:48 2024","interfaces":[{"interface":"back","average":{"1min":0.752,"5min":0.74099999999999999,"15min":0.73499999999999999},"min":{"1min":0.46700000000000003,"5min":0.46700000000000003,"15min":0.46700000000000003},"max":{"1min":1.089,"5min":1.2070000000000001,"15min":1.2070000000000001},"last":0.80700000000000005},{"interface":"front","average":{"1min":0.81999999999999995,"5min":0.746,"15min":0.72599999999999998},"min":{"1min":0.45700000000000002,"5min":0.45700000000000002,"15min":0.45700000000000002},"max":{"1min":1.1240000000000001,"5min":1.2,"15min":1.2},"last":0.872}]},{"osd":2,"last update":"Thu Feb 22 22:27:48 2024","interfaces":[{"interface":"back","average":{"1min":1.056,"5min":0.95899999999999996,"15min":0.94499999999999995},"min":{"1min":0.78000000000000003,"5min":0.65400000000000003,"15min":0.65400000000000003},"max":{"1min":1.3740000000000001,"5min":1.3740000000000001,"15min":1.3740000000000001},"last":1.0780000000000001},{"interface":"front","average":{"1min":1.004,"5min":0.93999999999999995,"15min":0.91400000000000003},"min":{"1min":0.71399999999999997,"5min":0.65700000000000003,"15min":0.65700000000000003},"max":{"1min":1.528,"5min":1.528,"15min":1.528},"last":0.83999999999999997}]},{"osd":4,"last update":"Thu Feb 22 22:27:48 2024","interfaces":[{"interface":"back","average":{"1min":1.01,"5min":0.98499999999999999,"15min":0.98499999999999999},"min":{"1min":0.65200000000000002,"5min":0.64600000000000002,"15min":0.64600000000000002},"max":{"1min":1.48,"5min":1.48,"15min":1.48},"last":1.0009999999999999},{"interface":"front","average":{"1min":1.0620000000000001,"5min":1.014,"15min":0.99199999999999999},"min":{"1min":0.82299999999999995,"5min":0.72299999999999998,"15min":0.72299999999999998},"max":{"1min":1.248,"5min":1.3480000000000001,"15min":1.3480000000000001},"last":1.179}]},{"osd":5,"last update":"Thu Feb 22 22:27:53 2024","interfaces":[{"interface":"back","average":{"1min":0.92300000000000004,"5min":0.91100000000000003,"15min":0.91300000000000003},"min":{"1min":0.48799999999999999,"5min":0.45700000000000002,"15min":0.45700000000000002},"max":{"1min":1.214,"5min":1.226,"15min":1.226},"last":1.1240000000000001},{"interface":"front","average":{"1min":1.0109999999999999,"5min":0.98499999999999999,"15min":0.97599999999999998},"min":{"1min":0.50600000000000001,"5min":0.48699999999999999,"15min":0.48699999999999999},"max":{"1min":1.292,"5min":1.2949999999999999,"15min":1.2949999999999999},"last":1.2569999999999999}]},{"osd":6,"last update":"Thu Feb 22 22:27:48 2024","interfaces":[{"interface":"back","average":{"1min":1.0489999999999999,"5min":1.0169999999999999,"15min":1.0029999999999999},"min":{"1min":0.83099999999999996,"5min":0.70499999999999996,"15min":0.70499999999999996},"max":{"1min":1.296,"5min":1.3,"15min":1.3},"last":1.228},{"interface":"front","average":{"1min":1.1659999999999999,"5min":1.0840000000000001,"15min":1.0620000000000001},"min":{"1min":0.83499999999999996,"5min":0.80800000000000005,"15min":0.80800000000000005},"max":{"1min":1.5409999999999999,"5min":1.5409999999999999,"15min":1.5409999999999999},"last":1.282}]},{"osd":7,"last update":"Thu Feb 22 22:28:05 2024","interfaces":[{"interface":"back","average":{"1min":1.004,"5min":1.0469999999999999,"15min":1.0529999999999999},"min":{"1min":0.626,"5min":0.61399999999999999,"15min":0.61399999999999999},"max":{"1min":1.427,"5min":1.429,"15min":1.429},"last":1.3100000000000001},{"interface":"front","average":{"1min":1.1359999999999999,"5min":1.1319999999999999,"15min":1.133},"min":{"1min":0.56499999999999995,"5min":0.56499999999999995,"15min":0.56499999999999995},"max":{"1min":1.444,"5min":1.444,"15min":1.444},"last":1.204}]}]}],"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-22T22:28:25.980 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-02-22T22:28:25.980 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-02-22T22:28:25.980 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-02-22T22:28:25.980 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph health --format=json 2024-02-22T22:28:26.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:26 smithi049 bash[14150]: audit 2024-02-22T22:28:25.196962+0000 mgr.smithi049.pzczis (mgr.14180) 237 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:28:26.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:26 smithi049 bash[14150]: cluster 2024-02-22T22:28:25.498468+0000 mgr.smithi049.pzczis (mgr.14180) 238 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:27.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:26 smithi195 bash[18068]: audit 2024-02-22T22:28:25.196962+0000 mgr.smithi049.pzczis (mgr.14180) 237 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:28:27.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:26 smithi195 bash[18068]: cluster 2024-02-22T22:28:25.498468+0000 mgr.smithi049.pzczis (mgr.14180) 238 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:28.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:28 smithi049 bash[14150]: cluster 2024-02-22T22:28:27.499034+0000 mgr.smithi049.pzczis (mgr.14180) 239 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:29.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:28 smithi195 bash[18068]: cluster 2024-02-22T22:28:27.499034+0000 mgr.smithi049.pzczis (mgr.14180) 239 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:30.778 INFO:teuthology.orchestra.run.smithi049.stderr:Inferring config /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/mon.smithi049/config 2024-02-22T22:28:30.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:30 smithi049 bash[14150]: cluster 2024-02-22T22:28:29.499641+0000 mgr.smithi049.pzczis (mgr.14180) 240 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:31.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:30 smithi195 bash[18068]: cluster 2024-02-22T22:28:29.499641+0000 mgr.smithi049.pzczis (mgr.14180) 240 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:32.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:32 smithi049 bash[14150]: cluster 2024-02-22T22:28:31.500242+0000 mgr.smithi049.pzczis (mgr.14180) 241 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:33.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:32 smithi195 bash[18068]: cluster 2024-02-22T22:28:31.500242+0000 mgr.smithi049.pzczis (mgr.14180) 241 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:33.626 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:28:33.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:33 smithi049 bash[14150]: cluster 2024-02-22T22:28:33.500776+0000 mgr.smithi049.pzczis (mgr.14180) 242 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:34.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:33 smithi195 bash[18068]: cluster 2024-02-22T22:28:33.500776+0000 mgr.smithi049.pzczis (mgr.14180) 242 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:34.335 INFO:teuthology.orchestra.run.smithi049.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-02-22T22:28:34.335 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-02-22T22:28:34.335 INFO:tasks.cephadm:Setup complete, yielding 2024-02-22T22:28:34.336 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-02-22T22:28:34.345 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi049.front.sepia.ceph.com 2024-02-22T22:28:34.345 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- bash -c 'ceph orch status' 2024-02-22T22:28:34.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:34 smithi049 bash[14150]: audit 2024-02-22T22:28:33.626709+0000 mon.smithi049 (mon.0) 621 : audit [DBG] from='client.? 172.21.15.49:0/2937329089' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-02-22T22:28:35.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:34 smithi195 bash[18068]: audit 2024-02-22T22:28:33.626709+0000 mon.smithi049 (mon.0) 621 : audit [DBG] from='client.? 172.21.15.49:0/2937329089' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-02-22T22:28:35.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:35 smithi049 bash[14150]: cluster 2024-02-22T22:28:35.501415+0000 mgr.smithi049.pzczis (mgr.14180) 243 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:36.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:35 smithi195 bash[18068]: cluster 2024-02-22T22:28:35.501415+0000 mgr.smithi049.pzczis (mgr.14180) 243 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:37.339 INFO:teuthology.orchestra.run.smithi049.stdout:Backend: cephadm 2024-02-22T22:28:37.339 INFO:teuthology.orchestra.run.smithi049.stdout:Available: Yes 2024-02-22T22:28:37.339 INFO:teuthology.orchestra.run.smithi049.stdout:Paused: No 2024-02-22T22:28:38.046 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- bash -c 'ceph orch ps' 2024-02-22T22:28:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:38 smithi049 bash[14150]: audit 2024-02-22T22:28:37.338384+0000 mgr.smithi049.pzczis (mgr.14180) 244 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:28:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:38 smithi049 bash[14150]: cluster 2024-02-22T22:28:37.502035+0000 mgr.smithi049.pzczis (mgr.14180) 245 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:38 smithi195 bash[18068]: audit 2024-02-22T22:28:37.338384+0000 mgr.smithi049.pzczis (mgr.14180) 244 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:28:39.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:38 smithi195 bash[18068]: cluster 2024-02-22T22:28:37.502035+0000 mgr.smithi049.pzczis (mgr.14180) 245 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:40.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:40 smithi049 bash[14150]: cluster 2024-02-22T22:28:39.502685+0000 mgr.smithi049.pzczis (mgr.14180) 246 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:41.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:40 smithi195 bash[18068]: cluster 2024-02-22T22:28:39.502685+0000 mgr.smithi049.pzczis (mgr.14180) 246 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:41.117 INFO:teuthology.orchestra.run.smithi049.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-02-22T22:28:41.117 INFO:teuthology.orchestra.run.smithi049.stdout:alertmanager.smithi049 smithi049 *:9093,9094 running (5m) 46s ago 7m 11.9M - 0.23.0 ba2b418f427c fc393014f382 2024-02-22T22:28:41.117 INFO:teuthology.orchestra.run.smithi049.stdout:crash.smithi049 smithi049 running (7m) 46s ago 7m 6924k - 16.2.14-550-geb66ed92 7403d1862307 ff6e127a96dd 2024-02-22T22:28:41.117 INFO:teuthology.orchestra.run.smithi049.stdout:crash.smithi195 smithi195 running (6m) 47s ago 6m 7075k - 16.2.14-550-geb66ed92 7403d1862307 0f8e74bd7bab 2024-02-22T22:28:41.117 INFO:teuthology.orchestra.run.smithi049.stdout:grafana.smithi049 smithi049 *:3000 running (5m) 46s ago 6m 40.9M - 8.3.5 dad864ee21e9 6cabd840bcfa 2024-02-22T22:28:41.117 INFO:teuthology.orchestra.run.smithi049.stdout:mgr.smithi049.pzczis smithi049 *:9283 running (8m) 46s ago 8m 426M - 16.2.14-550-geb66ed92 7403d1862307 dbed166e6edc 2024-02-22T22:28:41.117 INFO:teuthology.orchestra.run.smithi049.stdout:mgr.smithi195.prtvdp smithi195 *:8443,9283 running (5m) 47s ago 5m 374M - 16.2.14-550-geb66ed92 7403d1862307 070f4b205e32 2024-02-22T22:28:41.117 INFO:teuthology.orchestra.run.smithi049.stdout:mon.smithi049 smithi049 running (8m) 46s ago 8m 58.6M 2048M 16.2.14-550-geb66ed92 7403d1862307 5d1e781703e5 2024-02-22T22:28:41.117 INFO:teuthology.orchestra.run.smithi049.stdout:mon.smithi195 smithi195 running (5m) 47s ago 5m 58.0M 2048M 16.2.14-550-geb66ed92 7403d1862307 55600dacd087 2024-02-22T22:28:41.117 INFO:teuthology.orchestra.run.smithi049.stdout:node-exporter.smithi049 smithi049 *:9100 running (6m) 46s ago 6m 10.1M - 1.3.1 1dbe0e931976 6e25441251e0 2024-02-22T22:28:41.117 INFO:teuthology.orchestra.run.smithi049.stdout:node-exporter.smithi195 smithi195 *:9100 running (5m) 47s ago 5m 9996k - 1.3.1 1dbe0e931976 16b3ef3ff41a 2024-02-22T22:28:41.117 INFO:teuthology.orchestra.run.smithi049.stdout:osd.0 smithi195 running (4m) 47s ago 4m 33.3M 4028M 16.2.14-550-geb66ed92 7403d1862307 67a38d66a695 2024-02-22T22:28:41.117 INFO:teuthology.orchestra.run.smithi049.stdout:osd.1 smithi049 running (4m) 46s ago 4m 33.0M 3260M 16.2.14-550-geb66ed92 7403d1862307 7ae0e24c48b4 2024-02-22T22:28:41.118 INFO:teuthology.orchestra.run.smithi049.stdout:osd.2 smithi195 running (4m) 47s ago 4m 32.4M 4028M 16.2.14-550-geb66ed92 7403d1862307 cd6f91720bc5 2024-02-22T22:28:41.118 INFO:teuthology.orchestra.run.smithi049.stdout:osd.3 smithi049 running (4m) 46s ago 4m 32.7M 3260M 16.2.14-550-geb66ed92 7403d1862307 6f9fd5f2b81f 2024-02-22T22:28:41.118 INFO:teuthology.orchestra.run.smithi049.stdout:osd.4 smithi195 running (4m) 47s ago 4m 32.3M 4028M 16.2.14-550-geb66ed92 7403d1862307 ab54d31dc8d8 2024-02-22T22:28:41.118 INFO:teuthology.orchestra.run.smithi049.stdout:osd.5 smithi049 running (3m) 46s ago 4m 33.4M 3260M 16.2.14-550-geb66ed92 7403d1862307 d6c0a7c421dd 2024-02-22T22:28:41.118 INFO:teuthology.orchestra.run.smithi049.stdout:osd.6 smithi195 running (4m) 47s ago 4m 33.3M 4028M 16.2.14-550-geb66ed92 7403d1862307 d4c91a88b206 2024-02-22T22:28:41.118 INFO:teuthology.orchestra.run.smithi049.stdout:osd.7 smithi049 running (3m) 46s ago 3m 32.9M 3260M 16.2.14-550-geb66ed92 7403d1862307 f57bf76116f6 2024-02-22T22:28:41.118 INFO:teuthology.orchestra.run.smithi049.stdout:prometheus.smithi049 smithi049 *:9095 running (5m) 46s ago 6m 54.8M - 2.33.4 514e6a882f6e 2ead4fb0f8f8 2024-02-22T22:28:41.860 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- bash -c 'ceph orch ls' 2024-02-22T22:28:42.932 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:42 smithi049 bash[14150]: audit 2024-02-22T22:28:41.098789+0000 mgr.smithi049.pzczis (mgr.14180) 247 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:28:42.932 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:42 smithi049 bash[14150]: cluster 2024-02-22T22:28:41.503328+0000 mgr.smithi049.pzczis (mgr.14180) 248 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:42 smithi195 bash[18068]: audit 2024-02-22T22:28:41.098789+0000 mgr.smithi049.pzczis (mgr.14180) 247 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:28:43.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:42 smithi195 bash[18068]: cluster 2024-02-22T22:28:41.503328+0000 mgr.smithi049.pzczis (mgr.14180) 248 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:44.932 INFO:teuthology.orchestra.run.smithi049.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-02-22T22:28:44.932 INFO:teuthology.orchestra.run.smithi049.stdout:alertmanager ?:9093,9094 1/1 50s ago 7m count:1 2024-02-22T22:28:44.933 INFO:teuthology.orchestra.run.smithi049.stdout:crash 2/2 50s ago 8m * 2024-02-22T22:28:44.933 INFO:teuthology.orchestra.run.smithi049.stdout:grafana ?:3000 1/1 50s ago 7m count:1 2024-02-22T22:28:44.933 INFO:teuthology.orchestra.run.smithi049.stdout:mgr 2/2 50s ago 8m count:2 2024-02-22T22:28:44.933 INFO:teuthology.orchestra.run.smithi049.stdout:mon 2/2 50s ago 6m smithi049:172.21.15.49=smithi049;smithi195:172.21.15.195=smithi195;count:2 2024-02-22T22:28:44.933 INFO:teuthology.orchestra.run.smithi049.stdout:node-exporter ?:9100 2/2 50s ago 7m * 2024-02-22T22:28:44.933 INFO:teuthology.orchestra.run.smithi049.stdout:osd.all-available-devices 8 50s ago 5m * 2024-02-22T22:28:44.933 INFO:teuthology.orchestra.run.smithi049.stdout:prometheus ?:9095 1/1 50s ago 7m count:1 2024-02-22T22:28:44.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:44 smithi049 bash[14150]: cluster 2024-02-22T22:28:43.503958+0000 mgr.smithi049.pzczis (mgr.14180) 249 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:45.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:44 smithi195 bash[18068]: cluster 2024-02-22T22:28:43.503958+0000 mgr.smithi049.pzczis (mgr.14180) 249 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:45.672 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- bash -c 'ceph orch host ls' 2024-02-22T22:28:46.822 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:46 smithi049 bash[14150]: audit 2024-02-22T22:28:44.922287+0000 mgr.smithi049.pzczis (mgr.14180) 250 : audit [DBG] from='client.14506 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:28:46.822 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:46 smithi049 bash[14150]: cluster 2024-02-22T22:28:45.504594+0000 mgr.smithi049.pzczis (mgr.14180) 251 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:47.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:46 smithi195 bash[18068]: audit 2024-02-22T22:28:44.922287+0000 mgr.smithi049.pzczis (mgr.14180) 250 : audit [DBG] from='client.14506 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:28:47.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:46 smithi195 bash[18068]: cluster 2024-02-22T22:28:45.504594+0000 mgr.smithi049.pzczis (mgr.14180) 251 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:48.677 INFO:teuthology.orchestra.run.smithi049.stdout:HOST ADDR LABELS STATUS 2024-02-22T22:28:48.677 INFO:teuthology.orchestra.run.smithi049.stdout:smithi049 172.21.15.49 2024-02-22T22:28:48.677 INFO:teuthology.orchestra.run.smithi049.stdout:smithi195 172.21.15.195 2024-02-22T22:28:48.677 INFO:teuthology.orchestra.run.smithi049.stdout:2 hosts in cluster 2024-02-22T22:28:48.885 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:48 smithi049 bash[14150]: cluster 2024-02-22T22:28:47.505208+0000 mgr.smithi049.pzczis (mgr.14180) 252 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:49.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:48 smithi195 bash[18068]: cluster 2024-02-22T22:28:47.505208+0000 mgr.smithi049.pzczis (mgr.14180) 252 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:49.425 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- bash -c 'ceph orch device ls' 2024-02-22T22:28:50.759 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:50 smithi049 bash[14150]: audit 2024-02-22T22:28:48.675976+0000 mgr.smithi049.pzczis (mgr.14180) 253 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:28:50.759 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:50 smithi049 bash[14150]: cluster 2024-02-22T22:28:49.505793+0000 mgr.smithi049.pzczis (mgr.14180) 254 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:51.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:50 smithi195 bash[18068]: audit 2024-02-22T22:28:48.675976+0000 mgr.smithi049.pzczis (mgr.14180) 253 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:28:51.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:50 smithi195 bash[18068]: cluster 2024-02-22T22:28:49.505793+0000 mgr.smithi049.pzczis (mgr.14180) 254 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:51.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:51 smithi049 bash[14150]: cluster 2024-02-22T22:28:51.506360+0000 mgr.smithi049.pzczis (mgr.14180) 255 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:52.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:51 smithi195 bash[18068]: cluster 2024-02-22T22:28:51.506360+0000 mgr.smithi049.pzczis (mgr.14180) 255 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:52.488 INFO:teuthology.orchestra.run.smithi049.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-02-22T22:28:52.488 INFO:teuthology.orchestra.run.smithi049.stdout:smithi049 /dev/nvme0n1 ssd INTEL SSDPED1D480GA_PHMB747500D2480DGN 447G 3m ago Has a FileSystem, LVM detected 2024-02-22T22:28:52.488 INFO:teuthology.orchestra.run.smithi049.stdout:smithi049 /dev/nvme1n1 ssd Linux_e445c0d12c7347d9cda1 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-22T22:28:52.488 INFO:teuthology.orchestra.run.smithi049.stdout:smithi049 /dev/nvme2n1 ssd Linux_4fc00f886c0d93ea2986 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-22T22:28:52.488 INFO:teuthology.orchestra.run.smithi049.stdout:smithi049 /dev/nvme3n1 ssd Linux_79236725611dc78b25a4 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-22T22:28:52.488 INFO:teuthology.orchestra.run.smithi049.stdout:smithi049 /dev/nvme4n1 ssd Linux_3d1f20dbb49738f2f07d 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-22T22:28:52.488 INFO:teuthology.orchestra.run.smithi049.stdout:smithi195 /dev/nvme0n1 ssd INTEL SSDPED1D480GA_PHMB751300FS480DGN 447G 3m ago Has a FileSystem, LVM detected 2024-02-22T22:28:52.488 INFO:teuthology.orchestra.run.smithi049.stdout:smithi195 /dev/nvme1n1 ssd Linux_a5bcb4d9c6f52bd9c372 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-22T22:28:52.488 INFO:teuthology.orchestra.run.smithi049.stdout:smithi195 /dev/nvme2n1 ssd Linux_190783c0aa6dcbd8b840 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-22T22:28:52.488 INFO:teuthology.orchestra.run.smithi049.stdout:smithi195 /dev/nvme3n1 ssd Linux_4cff2f6624c37ba5eb48 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-22T22:28:52.488 INFO:teuthology.orchestra.run.smithi049.stdout:smithi195 /dev/nvme4n1 ssd Linux_605b0c7a831a81528611 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-22T22:28:52.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:52 smithi049 bash[14150]: audit 2024-02-22T22:28:52.484643+0000 mgr.smithi049.pzczis (mgr.14180) 256 : audit [DBG] from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:28:53.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:52 smithi195 bash[18068]: audit 2024-02-22T22:28:52.484643+0000 mgr.smithi049.pzczis (mgr.14180) 256 : audit [DBG] from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:28:53.176 INFO:teuthology.run_tasks:Running task vip... 2024-02-22T22:28:53.187 INFO:tasks.vip:Allocating static IPs for each host... 2024-02-22T22:28:53.188 INFO:tasks.vip:peername 172.21.15.49 2024-02-22T22:28:53.191 INFO:tasks.vip:172.21.15.49 in 172.21.0.0/20, pos 3888 2024-02-22T22:28:53.195 INFO:tasks.vip:smithi049.front.sepia.ceph.com static 10.0.15.49, vnet 10.0.0.0/16 2024-02-22T22:28:53.195 INFO:tasks.vip:VIPs are {map(str, vips)} 2024-02-22T22:28:53.196 DEBUG:teuthology.orchestra.run.smithi049:> sudo ip route ls 2024-02-22T22:28:53.213 INFO:teuthology.orchestra.run.smithi049.stdout:default via 172.21.15.254 dev ens1f0 2024-02-22T22:28:53.213 INFO:teuthology.orchestra.run.smithi049.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-02-22T22:28:53.213 INFO:teuthology.orchestra.run.smithi049.stdout:172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.49 2024-02-22T22:28:53.215 INFO:tasks.vip:Configuring 10.0.15.49 on smithi049.front.sepia.ceph.com iface ens1f0... 2024-02-22T22:28:53.215 DEBUG:teuthology.orchestra.run.smithi049:> sudo ip addr add 10.0.15.49/16 dev ens1f0 2024-02-22T22:28:53.273 INFO:tasks.vip:peername 172.21.15.195 2024-02-22T22:28:53.276 INFO:tasks.vip:172.21.15.195 in 172.21.0.0/20, pos 4034 2024-02-22T22:28:53.280 INFO:tasks.vip:smithi195.front.sepia.ceph.com static 10.0.15.195, vnet 10.0.0.0/16 2024-02-22T22:28:53.280 DEBUG:teuthology.orchestra.run.smithi195:> sudo ip route ls 2024-02-22T22:28:53.294 INFO:teuthology.orchestra.run.smithi195.stdout:default via 172.21.15.254 dev enp3s0f1 2024-02-22T22:28:53.294 INFO:teuthology.orchestra.run.smithi195.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.195 metric 100 2024-02-22T22:28:53.295 INFO:teuthology.orchestra.run.smithi195.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-02-22T22:28:53.295 INFO:teuthology.orchestra.run.smithi195.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.195 2024-02-22T22:28:53.295 INFO:teuthology.orchestra.run.smithi195.stdout:172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.195 metric 100 2024-02-22T22:28:53.295 INFO:tasks.vip:Configuring 10.0.15.195 on smithi195.front.sepia.ceph.com iface enp3s0f1... 2024-02-22T22:28:53.296 DEBUG:teuthology.orchestra.run.smithi195:> sudo ip addr add 10.0.15.195/16 dev enp3s0f1 2024-02-22T22:28:53.350 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-02-22T22:28:53.359 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi049.front.sepia.ceph.com 2024-02-22T22:28:53.359 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- bash -c 'ceph orch device ls --refresh' 2024-02-22T22:28:53.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:53 smithi049 bash[14150]: cluster 2024-02-22T22:28:53.506825+0000 mgr.smithi049.pzczis (mgr.14180) 257 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:54.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:53 smithi195 bash[18068]: cluster 2024-02-22T22:28:53.506825+0000 mgr.smithi049.pzczis (mgr.14180) 257 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:54.834 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:54 smithi049 bash[14150]: audit 2024-02-22T22:28:54.593217+0000 mon.smithi049 (mon.0) 622 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:28:55.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:54 smithi195 bash[18068]: audit 2024-02-22T22:28:54.593217+0000 mon.smithi049 (mon.0) 622 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:28:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:55 smithi049 bash[14150]: cluster 2024-02-22T22:28:55.507349+0000 mgr.smithi049.pzczis (mgr.14180) 258 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:56.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:55 smithi195 bash[18068]: cluster 2024-02-22T22:28:55.507349+0000 mgr.smithi049.pzczis (mgr.14180) 258 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:56.570 INFO:teuthology.orchestra.run.smithi049.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-02-22T22:28:56.570 INFO:teuthology.orchestra.run.smithi049.stdout:smithi049 /dev/nvme0n1 ssd INTEL SSDPED1D480GA_PHMB747500D2480DGN 447G 3m ago Has a FileSystem, LVM detected 2024-02-22T22:28:56.570 INFO:teuthology.orchestra.run.smithi049.stdout:smithi049 /dev/nvme1n1 ssd Linux_e445c0d12c7347d9cda1 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-22T22:28:56.570 INFO:teuthology.orchestra.run.smithi049.stdout:smithi049 /dev/nvme2n1 ssd Linux_4fc00f886c0d93ea2986 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-22T22:28:56.570 INFO:teuthology.orchestra.run.smithi049.stdout:smithi049 /dev/nvme3n1 ssd Linux_79236725611dc78b25a4 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-22T22:28:56.570 INFO:teuthology.orchestra.run.smithi049.stdout:smithi049 /dev/nvme4n1 ssd Linux_3d1f20dbb49738f2f07d 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-22T22:28:56.570 INFO:teuthology.orchestra.run.smithi049.stdout:smithi195 /dev/nvme0n1 ssd INTEL SSDPED1D480GA_PHMB751300FS480DGN 447G 3m ago Has a FileSystem, LVM detected 2024-02-22T22:28:56.570 INFO:teuthology.orchestra.run.smithi049.stdout:smithi195 /dev/nvme1n1 ssd Linux_a5bcb4d9c6f52bd9c372 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-22T22:28:56.570 INFO:teuthology.orchestra.run.smithi049.stdout:smithi195 /dev/nvme2n1 ssd Linux_190783c0aa6dcbd8b840 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-22T22:28:56.570 INFO:teuthology.orchestra.run.smithi049.stdout:smithi195 /dev/nvme3n1 ssd Linux_4cff2f6624c37ba5eb48 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-22T22:28:56.571 INFO:teuthology.orchestra.run.smithi049.stdout:smithi195 /dev/nvme4n1 ssd Linux_605b0c7a831a81528611 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-22T22:28:56.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:56 smithi049 bash[14150]: audit 2024-02-22T22:28:56.564450+0000 mgr.smithi049.pzczis (mgr.14180) 259 : audit [DBG] from='client.14518 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:28:57.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:56 smithi195 bash[18068]: audit 2024-02-22T22:28:56.564450+0000 mgr.smithi049.pzczis (mgr.14180) 259 : audit [DBG] from='client.14518 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:28:57.323 INFO:teuthology.run_tasks:Running task vip.exec... 2024-02-22T22:28:57.333 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi049.front.sepia.ceph.com 2024-02-22T22:28:57.333 DEBUG:teuthology.orchestra.run.smithi049:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-02-22T22:28:57.349 INFO:teuthology.orchestra.run.smithi049.stderr:+ systemctl stop nfs-server 2024-02-22T22:28:57.462 INFO:tasks.vip:Running commands on role host.b host ubuntu@smithi195.front.sepia.ceph.com 2024-02-22T22:28:57.462 DEBUG:teuthology.orchestra.run.smithi195:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-02-22T22:28:57.477 INFO:teuthology.orchestra.run.smithi195.stderr:+ systemctl stop nfs-server 2024-02-22T22:28:57.612 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-02-22T22:28:57.622 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi049.front.sepia.ceph.com 2024-02-22T22:28:57.622 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2024-02-22T22:28:57.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:28:57 smithi195 bash[18068]: cluster 2024-02-22T22:28:57.508015+0000 mgr.smithi049.pzczis (mgr.14180) 260 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:28:57.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:28:57 smithi049 bash[14150]: cluster 2024-02-22T22:28:57.508015+0000 mgr.smithi049.pzczis (mgr.14180) 260 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:29:00.740 INFO:teuthology.orchestra.run.smithi049.stdout:Scheduled rgw.foorgw update... 2024-02-22T22:29:00.907 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:00 smithi049 bash[14150]: cluster 2024-02-22T22:28:59.508719+0000 mgr.smithi049.pzczis (mgr.14180) 261 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:29:00.908 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:00 smithi049 bash[14150]: audit 2024-02-22T22:29:00.061021+0000 mon.smithi049 (mon.0) 623 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:01.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:00 smithi195 bash[18068]: cluster 2024-02-22T22:28:59.508719+0000 mgr.smithi049.pzczis (mgr.14180) 261 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:29:01.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:00 smithi195 bash[18068]: audit 2024-02-22T22:29:00.061021+0000 mon.smithi049 (mon.0) 623 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:01.456 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 10.0.31.49/16' 2024-02-22T22:29:01.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:01 smithi049 bash[14150]: audit 2024-02-22T22:29:00.734224+0000 mgr.smithi049.pzczis (mgr.14180) 262 : audit [DBG] from='client.14522 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:29:01.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:01 smithi049 bash[14150]: cephadm 2024-02-22T22:29:00.735919+0000 mgr.smithi049.pzczis (mgr.14180) 263 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-02-22T22:29:01.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:01 smithi049 bash[14150]: audit 2024-02-22T22:29:00.739929+0000 mon.smithi049 (mon.0) 624 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:01.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:01 smithi049 bash[14150]: audit 2024-02-22T22:29:01.118925+0000 mon.smithi049 (mon.0) 625 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:01.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:01 smithi049 bash[14150]: cluster 2024-02-22T22:29:01.509362+0000 mgr.smithi049.pzczis (mgr.14180) 264 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:29:02.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:01 smithi195 bash[18068]: audit 2024-02-22T22:29:00.734224+0000 mgr.smithi049.pzczis (mgr.14180) 262 : audit [DBG] from='client.14522 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:29:02.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:01 smithi195 bash[18068]: cephadm 2024-02-22T22:29:00.735919+0000 mgr.smithi049.pzczis (mgr.14180) 263 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-02-22T22:29:02.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:01 smithi195 bash[18068]: audit 2024-02-22T22:29:00.739929+0000 mon.smithi049 (mon.0) 624 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:02.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:01 smithi195 bash[18068]: audit 2024-02-22T22:29:01.118925+0000 mon.smithi049 (mon.0) 625 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:02.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:01 smithi195 bash[18068]: cluster 2024-02-22T22:29:01.509362+0000 mgr.smithi049.pzczis (mgr.14180) 264 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:29:05.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:05 smithi195 bash[18068]: cluster 2024-02-22T22:29:03.509844+0000 mgr.smithi049.pzczis (mgr.14180) 265 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:29:05.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:04 smithi049 bash[14150]: cluster 2024-02-22T22:29:03.509844+0000 mgr.smithi049.pzczis (mgr.14180) 265 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:29:06.088 INFO:teuthology.orchestra.run.smithi049.stdout:NFS Cluster Created Successfully 2024-02-22T22:29:06.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:05 smithi049 bash[14150]: audit 2024-02-22T22:29:04.511544+0000 mgr.smithi049.pzczis (mgr.14180) 266 : audit [DBG] from='client.14526 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.49/16", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:29:06.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:05 smithi049 bash[14150]: audit 2024-02-22T22:29:04.514627+0000 mon.smithi049 (mon.0) 626 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd pool create", "pool": ".nfs"}]: dispatch 2024-02-22T22:29:06.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:05 smithi049 bash[14150]: audit 2024-02-22T22:29:05.037557+0000 mon.smithi049 (mon.0) 627 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd='[{"prefix": "osd pool create", "pool": ".nfs"}]': finished 2024-02-22T22:29:06.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:05 smithi049 bash[14150]: cluster 2024-02-22T22:29:05.037652+0000 mon.smithi049 (mon.0) 628 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-02-22T22:29:06.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:05 smithi049 bash[14150]: audit 2024-02-22T22:29:05.040846+0000 mon.smithi049 (mon.0) 629 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-02-22T22:29:06.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:05 smithi049 bash[14150]: cluster 2024-02-22T22:29:05.510474+0000 mgr.smithi049.pzczis (mgr.14180) 267 : cluster [DBG] pgmap v241: 33 pgs: 12 creating+peering, 1 active+clean, 20 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:29:06.301 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:05 smithi195 bash[18068]: audit 2024-02-22T22:29:04.511544+0000 mgr.smithi049.pzczis (mgr.14180) 266 : audit [DBG] from='client.14526 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.49/16", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:29:06.301 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:05 smithi195 bash[18068]: audit 2024-02-22T22:29:04.514627+0000 mon.smithi049 (mon.0) 626 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd pool create", "pool": ".nfs"}]: dispatch 2024-02-22T22:29:06.301 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:05 smithi195 bash[18068]: audit 2024-02-22T22:29:05.037557+0000 mon.smithi049 (mon.0) 627 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd='[{"prefix": "osd pool create", "pool": ".nfs"}]': finished 2024-02-22T22:29:06.301 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:05 smithi195 bash[18068]: cluster 2024-02-22T22:29:05.037652+0000 mon.smithi049 (mon.0) 628 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-02-22T22:29:06.301 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:05 smithi195 bash[18068]: audit 2024-02-22T22:29:05.040846+0000 mon.smithi049 (mon.0) 629 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-02-22T22:29:06.301 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:05 smithi195 bash[18068]: cluster 2024-02-22T22:29:05.510474+0000 mgr.smithi049.pzczis (mgr.14180) 267 : cluster [DBG] pgmap v241: 33 pgs: 12 creating+peering, 1 active+clean, 20 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:29:07.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:07 smithi049 bash[14150]: audit 2024-02-22T22:29:06.043766+0000 mon.smithi049 (mon.0) 630 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-02-22T22:29:07.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:07 smithi049 bash[14150]: cluster 2024-02-22T22:29:06.044017+0000 mon.smithi049 (mon.0) 631 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-02-22T22:29:07.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:07 smithi049 bash[14150]: cephadm 2024-02-22T22:29:06.079146+0000 mgr.smithi049.pzczis (mgr.14180) 268 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-02-22T22:29:07.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:07 smithi049 bash[14150]: audit 2024-02-22T22:29:06.083060+0000 mon.smithi049 (mon.0) 632 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:07.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:07 smithi049 bash[14150]: cephadm 2024-02-22T22:29:06.085177+0000 mgr.smithi049.pzczis (mgr.14180) 269 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-02-22T22:29:07.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:07 smithi049 bash[14150]: audit 2024-02-22T22:29:06.088299+0000 mon.smithi049 (mon.0) 633 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:07.275 INFO:teuthology.run_tasks:Running task vip.exec... 2024-02-22T22:29:07.284 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi049.front.sepia.ceph.com 2024-02-22T22:29:07.284 DEBUG:teuthology.orchestra.run.smithi049:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2024-02-22T22:29:07.301 INFO:teuthology.orchestra.run.smithi049.stderr:+ dnf install -y python3-boto3 2024-02-22T22:29:07.301 INFO:teuthology.orchestra.run.smithi049.stderr:bash: dnf: command not found 2024-02-22T22:29:07.301 INFO:teuthology.orchestra.run.smithi049.stderr:+ apt install -y python3-boto3 2024-02-22T22:29:07.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:07 smithi195 bash[18068]: audit 2024-02-22T22:29:06.043766+0000 mon.smithi049 (mon.0) 630 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-02-22T22:29:07.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:07 smithi195 bash[18068]: cluster 2024-02-22T22:29:06.044017+0000 mon.smithi049 (mon.0) 631 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-02-22T22:29:07.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:07 smithi195 bash[18068]: cephadm 2024-02-22T22:29:06.079146+0000 mgr.smithi049.pzczis (mgr.14180) 268 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-02-22T22:29:07.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:07 smithi195 bash[18068]: audit 2024-02-22T22:29:06.083060+0000 mon.smithi049 (mon.0) 632 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:07.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:07 smithi195 bash[18068]: cephadm 2024-02-22T22:29:06.085177+0000 mgr.smithi049.pzczis (mgr.14180) 269 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-02-22T22:29:07.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:07 smithi195 bash[18068]: audit 2024-02-22T22:29:06.088299+0000 mon.smithi049 (mon.0) 633 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:07.306 INFO:teuthology.orchestra.run.smithi049.stderr: 2024-02-22T22:29:07.306 INFO:teuthology.orchestra.run.smithi049.stderr:WARNING: apt does not have a stable CLI interface. Use with caution in scripts. 2024-02-22T22:29:07.306 INFO:teuthology.orchestra.run.smithi049.stderr: 2024-02-22T22:29:07.361 INFO:teuthology.orchestra.run.smithi049.stdout:Reading package lists... 2024-02-22T22:29:07.593 INFO:teuthology.orchestra.run.smithi049.stdout:Building dependency tree... 2024-02-22T22:29:07.594 INFO:teuthology.orchestra.run.smithi049.stdout:Reading state information... 2024-02-22T22:29:07.820 INFO:teuthology.orchestra.run.smithi049.stdout:The following additional packages will be installed: 2024-02-22T22:29:07.821 INFO:teuthology.orchestra.run.smithi049.stdout: docutils-common libpaper-utils libpaper1 python3-botocore python3-docutils 2024-02-22T22:29:07.821 INFO:teuthology.orchestra.run.smithi049.stdout: python3-jmespath python3-pygments python3-roman python3-s3transfer 2024-02-22T22:29:07.822 INFO:teuthology.orchestra.run.smithi049.stdout:Suggested packages: 2024-02-22T22:29:07.822 INFO:teuthology.orchestra.run.smithi049.stdout: docutils-doc fonts-linuxlibertine | ttf-linux-libertine texlive-lang-french 2024-02-22T22:29:07.822 INFO:teuthology.orchestra.run.smithi049.stdout: texlive-latex-base texlive-latex-recommended python-pygments-doc 2024-02-22T22:29:07.862 INFO:teuthology.orchestra.run.smithi049.stdout:The following NEW packages will be installed: 2024-02-22T22:29:07.863 INFO:teuthology.orchestra.run.smithi049.stdout: docutils-common libpaper-utils libpaper1 python3-boto3 python3-botocore 2024-02-22T22:29:07.864 INFO:teuthology.orchestra.run.smithi049.stdout: python3-docutils python3-jmespath python3-pygments python3-roman 2024-02-22T22:29:07.864 INFO:teuthology.orchestra.run.smithi049.stdout: python3-s3transfer 2024-02-22T22:29:07.933 INFO:teuthology.orchestra.run.smithi049.stdout:0 upgraded, 10 newly installed, 0 to remove and 268 not upgraded. 2024-02-22T22:29:07.933 INFO:teuthology.orchestra.run.smithi049.stdout:Need to get 4,480 kB of archives. 2024-02-22T22:29:07.933 INFO:teuthology.orchestra.run.smithi049.stdout:After this operation, 53.0 MB of additional disk space will be used. 2024-02-22T22:29:07.933 INFO:teuthology.orchestra.run.smithi049.stdout:Get:1 http://archive.ubuntu.com/ubuntu focal/main amd64 docutils-common all 0.16+dfsg-2 [116 kB] 2024-02-22T22:29:08.026 INFO:teuthology.orchestra.run.smithi049.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal/main amd64 libpaper1 amd64 1.1.28 [13.0 kB] 2024-02-22T22:29:08.028 INFO:teuthology.orchestra.run.smithi049.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal/main amd64 libpaper-utils amd64 1.1.28 [8,400 B] 2024-02-22T22:29:08.029 INFO:teuthology.orchestra.run.smithi049.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-roman all 2.0.0-3build1 [8,728 B] 2024-02-22T22:29:08.030 INFO:teuthology.orchestra.run.smithi049.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-docutils all 0.16+dfsg-2 [368 kB] 2024-02-22T22:29:08.072 INFO:teuthology.orchestra.run.smithi049.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-jmespath all 0.9.4-2ubuntu1 [21.5 kB] 2024-02-22T22:29:08.073 INFO:teuthology.orchestra.run.smithi049.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 python3-botocore all 1.16.19+repack-1ubuntu0.20.04.1 [3,255 kB] 2024-02-22T22:29:08.143 INFO:teuthology.orchestra.run.smithi049.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-s3transfer all 0.3.3-1 [46.6 kB] 2024-02-22T22:29:08.143 INFO:teuthology.orchestra.run.smithi049.stdout:Get:9 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-boto3 all 1.9.253-1 [63.7 kB] 2024-02-22T22:29:08.143 INFO:teuthology.orchestra.run.smithi049.stdout:Get:10 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-pygments all 2.3.1+dfsg-1ubuntu2.2 [579 kB] 2024-02-22T22:29:08.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:08 smithi195 bash[18068]: cluster 2024-02-22T22:29:07.046064+0000 mon.smithi049 (mon.0) 634 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-02-22T22:29:08.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:08 smithi195 bash[18068]: cluster 2024-02-22T22:29:07.098475+0000 mon.smithi049 (mon.0) 635 : cluster [DBG] mgrmap e19: smithi049.pzczis(active, since 6m), standbys: smithi195.prtvdp 2024-02-22T22:29:08.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:08 smithi195 bash[18068]: cluster 2024-02-22T22:29:07.510974+0000 mgr.smithi049.pzczis (mgr.14180) 270 : cluster [DBG] pgmap v244: 33 pgs: 19 creating+peering, 10 active+clean, 4 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:29:08.394 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:08 smithi049 bash[14150]: cluster 2024-02-22T22:29:07.046064+0000 mon.smithi049 (mon.0) 634 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-02-22T22:29:08.394 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:08 smithi049 bash[14150]: cluster 2024-02-22T22:29:07.098475+0000 mon.smithi049 (mon.0) 635 : cluster [DBG] mgrmap e19: smithi049.pzczis(active, since 6m), standbys: smithi195.prtvdp 2024-02-22T22:29:08.394 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:08 smithi049 bash[14150]: cluster 2024-02-22T22:29:07.510974+0000 mgr.smithi049.pzczis (mgr.14180) 270 : cluster [DBG] pgmap v244: 33 pgs: 19 creating+peering, 10 active+clean, 4 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:29:08.625 INFO:teuthology.orchestra.run.smithi049.stderr:debconf: unable to initialize frontend: Dialog 2024-02-22T22:29:08.625 INFO:teuthology.orchestra.run.smithi049.stderr:debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.) 2024-02-22T22:29:08.625 INFO:teuthology.orchestra.run.smithi049.stderr:debconf: falling back to frontend: Readline 2024-02-22T22:29:08.736 INFO:teuthology.orchestra.run.smithi049.stderr:debconf: unable to initialize frontend: Readline 2024-02-22T22:29:08.737 INFO:teuthology.orchestra.run.smithi049.stderr:debconf: (This frontend requires a controlling tty.) 2024-02-22T22:29:08.737 INFO:teuthology.orchestra.run.smithi049.stderr:debconf: falling back to frontend: Teletype 2024-02-22T22:29:08.742 INFO:teuthology.orchestra.run.smithi049.stderr:dpkg-preconfigure: unable to re-open stdin: 2024-02-22T22:29:08.799 INFO:teuthology.orchestra.run.smithi049.stdout:Fetched 4,480 kB in 0s (16.2 MB/s) 2024-02-22T22:29:09.303 INFO:teuthology.orchestra.run.smithi049.stdout:Selecting previously unselected package docutils-common. 2024-02-22T22:29:09.349 INFO:teuthology.orchestra.run.smithi049.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 ... 112645 files and directories currently installed.) 2024-02-22T22:29:09.353 INFO:teuthology.orchestra.run.smithi049.stdout:Preparing to unpack .../0-docutils-common_0.16+dfsg-2_all.deb ... 2024-02-22T22:29:09.556 INFO:teuthology.orchestra.run.smithi049.stdout:Unpacking docutils-common (0.16+dfsg-2) ... 2024-02-22T22:29:10.307 INFO:teuthology.orchestra.run.smithi049.stdout:Selecting previously unselected package libpaper1:amd64. 2024-02-22T22:29:10.316 INFO:teuthology.orchestra.run.smithi049.stdout:Preparing to unpack .../1-libpaper1_1.1.28_amd64.deb ... 2024-02-22T22:29:10.399 INFO:teuthology.orchestra.run.smithi049.stdout:Unpacking libpaper1:amd64 (1.1.28) ... 2024-02-22T22:29:10.661 INFO:teuthology.orchestra.run.smithi049.stdout:Selecting previously unselected package libpaper-utils. 2024-02-22T22:29:10.676 INFO:teuthology.orchestra.run.smithi049.stdout:Preparing to unpack .../2-libpaper-utils_1.1.28_amd64.deb ... 2024-02-22T22:29:10.719 INFO:teuthology.orchestra.run.smithi049.stdout:Unpacking libpaper-utils (1.1.28) ... 2024-02-22T22:29:10.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:10 smithi049 bash[14150]: cluster 2024-02-22T22:29:09.511618+0000 mgr.smithi049.pzczis (mgr.14180) 271 : cluster [DBG] pgmap v245: 33 pgs: 19 creating+peering, 14 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:29:10.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:10 smithi049 bash[14150]: audit 2024-02-22T22:29:10.541202+0000 mon.smithi049 (mon.0) 636 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:11.012 INFO:teuthology.orchestra.run.smithi049.stdout:Selecting previously unselected package python3-roman. 2024-02-22T22:29:11.022 INFO:teuthology.orchestra.run.smithi049.stdout:Preparing to unpack .../3-python3-roman_2.0.0-3build1_all.deb ... 2024-02-22T22:29:11.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:10 smithi195 bash[18068]: cluster 2024-02-22T22:29:09.511618+0000 mgr.smithi049.pzczis (mgr.14180) 271 : cluster [DBG] pgmap v245: 33 pgs: 19 creating+peering, 14 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:29:11.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:10 smithi195 bash[18068]: audit 2024-02-22T22:29:10.541202+0000 mon.smithi049 (mon.0) 636 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:11.078 INFO:teuthology.orchestra.run.smithi049.stdout:Unpacking python3-roman (2.0.0-3build1) ... 2024-02-22T22:29:11.387 INFO:teuthology.orchestra.run.smithi049.stdout:Selecting previously unselected package python3-docutils. 2024-02-22T22:29:11.400 INFO:teuthology.orchestra.run.smithi049.stdout:Preparing to unpack .../4-python3-docutils_0.16+dfsg-2_all.deb ... 2024-02-22T22:29:11.445 INFO:teuthology.orchestra.run.smithi049.stdout:Unpacking python3-docutils (0.16+dfsg-2) ... 2024-02-22T22:29:12.799 INFO:teuthology.orchestra.run.smithi049.stdout:Selecting previously unselected package python3-jmespath. 2024-02-22T22:29:12.812 INFO:teuthology.orchestra.run.smithi049.stdout:Preparing to unpack .../5-python3-jmespath_0.9.4-2ubuntu1_all.deb ... 2024-02-22T22:29:12.865 INFO:teuthology.orchestra.run.smithi049.stdout:Unpacking python3-jmespath (0.9.4-2ubuntu1) ... 2024-02-22T22:29:12.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:12 smithi049 bash[14150]: cluster 2024-02-22T22:29:11.512357+0000 mgr.smithi049.pzczis (mgr.14180) 272 : cluster [DBG] pgmap v246: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:29:13.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:12 smithi195 bash[18068]: cluster 2024-02-22T22:29:11.512357+0000 mgr.smithi049.pzczis (mgr.14180) 272 : cluster [DBG] pgmap v246: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:29:13.183 INFO:teuthology.orchestra.run.smithi049.stdout:Selecting previously unselected package python3-botocore. 2024-02-22T22:29:13.196 INFO:teuthology.orchestra.run.smithi049.stdout:Preparing to unpack .../6-python3-botocore_1.16.19+repack-1ubuntu0.20.04.1_all.deb ... 2024-02-22T22:29:13.234 INFO:teuthology.orchestra.run.smithi049.stdout:Unpacking python3-botocore (1.16.19+repack-1ubuntu0.20.04.1) ... 2024-02-22T22:29:14.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:13 smithi195 bash[18068]: audit 2024-02-22T22:29:12.752541+0000 mon.smithi049 (mon.0) 637 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:14.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:13 smithi195 bash[18068]: audit 2024-02-22T22:29:13.027967+0000 mon.smithi049 (mon.0) 638 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:29:14.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:13 smithi195 bash[18068]: audit 2024-02-22T22:29:13.029339+0000 mon.smithi049 (mon.0) 639 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:29:14.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:13 smithi195 bash[18068]: audit 2024-02-22T22:29:13.036940+0000 mon.smithi049 (mon.0) 640 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:14.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:13 smithi195 bash[18068]: audit 2024-02-22T22:29:13.043071+0000 mon.smithi049 (mon.0) 641 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:29:14.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:13 smithi195 bash[18068]: cephadm 2024-02-22T22:29:13.050007+0000 mgr.smithi049.pzczis (mgr.14180) 273 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-02-22T22:29:14.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:13 smithi195 bash[18068]: audit 2024-02-22T22:29:13.053671+0000 mon.smithi049 (mon.0) 642 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:14.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:13 smithi195 bash[18068]: audit 2024-02-22T22:29:13.054433+0000 mon.smithi049 (mon.0) 643 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi195.guejzt", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-22T22:29:14.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:13 smithi195 bash[18068]: audit 2024-02-22T22:29:13.058853+0000 mon.smithi049 (mon.0) 644 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi195.guejzt", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-22T22:29:14.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:13 smithi195 bash[18068]: audit 2024-02-22T22:29:13.063779+0000 mon.smithi049 (mon.0) 645 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:14.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:13 smithi195 bash[18068]: audit 2024-02-22T22:29:13.065079+0000 mon.smithi049 (mon.0) 646 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:29:14.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:13 smithi195 bash[18068]: cephadm 2024-02-22T22:29:13.066178+0000 mgr.smithi049.pzczis (mgr.14180) 274 : cephadm [INF] Deploying daemon rgw.foorgw.smithi195.guejzt on smithi195 2024-02-22T22:29:14.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:13 smithi195 bash[18068]: cluster 2024-02-22T22:29:13.512806+0000 mgr.smithi049.pzczis (mgr.14180) 275 : cluster [DBG] pgmap v247: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:29:14.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:13 smithi049 bash[14150]: audit 2024-02-22T22:29:12.752541+0000 mon.smithi049 (mon.0) 637 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:14.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:13 smithi049 bash[14150]: audit 2024-02-22T22:29:13.027967+0000 mon.smithi049 (mon.0) 638 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:29:14.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:13 smithi049 bash[14150]: audit 2024-02-22T22:29:13.029339+0000 mon.smithi049 (mon.0) 639 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:29:14.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:13 smithi049 bash[14150]: audit 2024-02-22T22:29:13.036940+0000 mon.smithi049 (mon.0) 640 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:14.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:13 smithi049 bash[14150]: audit 2024-02-22T22:29:13.043071+0000 mon.smithi049 (mon.0) 641 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:29:14.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:13 smithi049 bash[14150]: cephadm 2024-02-22T22:29:13.050007+0000 mgr.smithi049.pzczis (mgr.14180) 273 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-02-22T22:29:14.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:13 smithi049 bash[14150]: audit 2024-02-22T22:29:13.053671+0000 mon.smithi049 (mon.0) 642 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:14.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:13 smithi049 bash[14150]: audit 2024-02-22T22:29:13.054433+0000 mon.smithi049 (mon.0) 643 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi195.guejzt", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-22T22:29:14.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:13 smithi049 bash[14150]: audit 2024-02-22T22:29:13.058853+0000 mon.smithi049 (mon.0) 644 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi195.guejzt", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-22T22:29:14.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:13 smithi049 bash[14150]: audit 2024-02-22T22:29:13.063779+0000 mon.smithi049 (mon.0) 645 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:14.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:13 smithi049 bash[14150]: audit 2024-02-22T22:29:13.065079+0000 mon.smithi049 (mon.0) 646 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:29:14.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:13 smithi049 bash[14150]: cephadm 2024-02-22T22:29:13.066178+0000 mgr.smithi049.pzczis (mgr.14180) 274 : cephadm [INF] Deploying daemon rgw.foorgw.smithi195.guejzt on smithi195 2024-02-22T22:29:14.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:13 smithi049 bash[14150]: cluster 2024-02-22T22:29:13.512806+0000 mgr.smithi049.pzczis (mgr.14180) 275 : cluster [DBG] pgmap v247: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:29:14.542 INFO:teuthology.orchestra.run.smithi049.stdout:Selecting previously unselected package python3-s3transfer. 2024-02-22T22:29:14.556 INFO:teuthology.orchestra.run.smithi049.stdout:Preparing to unpack .../7-python3-s3transfer_0.3.3-1_all.deb ... 2024-02-22T22:29:14.595 INFO:teuthology.orchestra.run.smithi049.stdout:Unpacking python3-s3transfer (0.3.3-1) ... 2024-02-22T22:29:14.898 INFO:teuthology.orchestra.run.smithi049.stdout:Selecting previously unselected package python3-boto3. 2024-02-22T22:29:14.911 INFO:teuthology.orchestra.run.smithi049.stdout:Preparing to unpack .../8-python3-boto3_1.9.253-1_all.deb ... 2024-02-22T22:29:14.960 INFO:teuthology.orchestra.run.smithi049.stdout:Unpacking python3-boto3 (1.9.253-1) ... 2024-02-22T22:29:15.290 INFO:teuthology.orchestra.run.smithi049.stdout:Selecting previously unselected package python3-pygments. 2024-02-22T22:29:15.303 INFO:teuthology.orchestra.run.smithi049.stdout:Preparing to unpack .../9-python3-pygments_2.3.1+dfsg-1ubuntu2.2_all.deb ... 2024-02-22T22:29:15.353 INFO:teuthology.orchestra.run.smithi049.stdout:Unpacking python3-pygments (2.3.1+dfsg-1ubuntu2.2) ... 2024-02-22T22:29:16.063 INFO:teuthology.orchestra.run.smithi049.stdout:Setting up libpaper1:amd64 (1.1.28) ... 2024-02-22T22:29:16.719 INFO:teuthology.orchestra.run.smithi049.stdout:debconf: unable to initialize frontend: Dialog 2024-02-22T22:29:16.719 INFO:teuthology.orchestra.run.smithi049.stdout:debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.) 2024-02-22T22:29:16.720 INFO:teuthology.orchestra.run.smithi049.stdout:debconf: falling back to frontend: Readline 2024-02-22T22:29:16.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:16 smithi049 bash[14150]: audit 2024-02-22T22:29:15.469577+0000 mon.smithi049 (mon.0) 647 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:16.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:16 smithi049 bash[14150]: audit 2024-02-22T22:29:15.471692+0000 mon.smithi049 (mon.0) 648 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi049.rkfzgw", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-22T22:29:16.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:16 smithi049 bash[14150]: audit 2024-02-22T22:29:15.475961+0000 mon.smithi049 (mon.0) 649 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi049.rkfzgw", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-22T22:29:16.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:16 smithi049 bash[14150]: audit 2024-02-22T22:29:15.482036+0000 mon.smithi049 (mon.0) 650 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:16.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:16 smithi049 bash[14150]: audit 2024-02-22T22:29:15.483227+0000 mon.smithi049 (mon.0) 651 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:29:16.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:16 smithi049 bash[14150]: cephadm 2024-02-22T22:29:15.484347+0000 mgr.smithi049.pzczis (mgr.14180) 276 : cephadm [INF] Deploying daemon rgw.foorgw.smithi049.rkfzgw on smithi049 2024-02-22T22:29:16.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:16 smithi049 bash[14150]: cluster 2024-02-22T22:29:15.513253+0000 mgr.smithi049.pzczis (mgr.14180) 277 : cluster [DBG] pgmap v248: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:29:17.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:16 smithi195 bash[18068]: audit 2024-02-22T22:29:15.469577+0000 mon.smithi049 (mon.0) 647 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:17.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:16 smithi195 bash[18068]: audit 2024-02-22T22:29:15.471692+0000 mon.smithi049 (mon.0) 648 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi049.rkfzgw", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-22T22:29:17.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:16 smithi195 bash[18068]: audit 2024-02-22T22:29:15.475961+0000 mon.smithi049 (mon.0) 649 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi049.rkfzgw", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-22T22:29:17.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:16 smithi195 bash[18068]: audit 2024-02-22T22:29:15.482036+0000 mon.smithi049 (mon.0) 650 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:17.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:16 smithi195 bash[18068]: audit 2024-02-22T22:29:15.483227+0000 mon.smithi049 (mon.0) 651 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:29:17.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:16 smithi195 bash[18068]: cephadm 2024-02-22T22:29:15.484347+0000 mgr.smithi049.pzczis (mgr.14180) 276 : cephadm [INF] Deploying daemon rgw.foorgw.smithi049.rkfzgw on smithi049 2024-02-22T22:29:17.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:16 smithi195 bash[18068]: cluster 2024-02-22T22:29:15.513253+0000 mgr.smithi049.pzczis (mgr.14180) 277 : cluster [DBG] pgmap v248: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:29:17.111 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:29:17.111 INFO:teuthology.orchestra.run.smithi049.stdout:Creating config file /etc/papersize with new version 2024-02-22T22:29:17.403 INFO:teuthology.orchestra.run.smithi049.stdout:Setting up libpaper-utils (1.1.28) ... 2024-02-22T22:29:17.692 INFO:teuthology.orchestra.run.smithi049.stdout:Setting up python3-roman (2.0.0-3build1) ... 2024-02-22T22:29:18.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:17 smithi049 bash[14150]: cluster 2024-02-22T22:29:16.818801+0000 mon.smithi049 (mon.0) 652 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-02-22T22:29:18.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:17 smithi049 bash[14150]: audit 2024-02-22T22:29:16.818939+0000 mon.smithi195 (mon.1) 18 : audit [INF] from='client.? 172.21.15.195:0/3494047888' entity='client.rgw.foorgw.smithi195.guejzt' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-02-22T22:29:18.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:17 smithi049 bash[14150]: audit 2024-02-22T22:29:16.823344+0000 mon.smithi049 (mon.0) 653 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.guejzt' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-02-22T22:29:18.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:17 smithi049 bash[14150]: cluster 2024-02-22T22:29:17.513762+0000 mgr.smithi049.pzczis (mgr.14180) 278 : cluster [DBG] pgmap v250: 65 pgs: 10 creating+peering, 22 unknown, 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:29:18.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:17 smithi195 bash[18068]: cluster 2024-02-22T22:29:16.818801+0000 mon.smithi049 (mon.0) 652 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-02-22T22:29:18.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:17 smithi195 bash[18068]: audit 2024-02-22T22:29:16.818939+0000 mon.smithi195 (mon.1) 18 : audit [INF] from='client.? 172.21.15.195:0/3494047888' entity='client.rgw.foorgw.smithi195.guejzt' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-02-22T22:29:18.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:17 smithi195 bash[18068]: audit 2024-02-22T22:29:16.823344+0000 mon.smithi049 (mon.0) 653 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.guejzt' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-02-22T22:29:18.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:17 smithi195 bash[18068]: cluster 2024-02-22T22:29:17.513762+0000 mgr.smithi049.pzczis (mgr.14180) 278 : cluster [DBG] pgmap v250: 65 pgs: 10 creating+peering, 22 unknown, 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:29:18.444 INFO:teuthology.orchestra.run.smithi049.stdout:Setting up python3-pygments (2.3.1+dfsg-1ubuntu2.2) ... 2024-02-22T22:29:18.938 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:18 smithi049 bash[14150]: audit 2024-02-22T22:29:17.826708+0000 mon.smithi049 (mon.0) 654 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.guejzt' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-02-22T22:29:18.938 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:18 smithi049 bash[14150]: cluster 2024-02-22T22:29:17.827049+0000 mon.smithi049 (mon.0) 655 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-02-22T22:29:19.281 INFO:teuthology.orchestra.run.smithi049.stdout:Setting up python3-jmespath (0.9.4-2ubuntu1) ... 2024-02-22T22:29:19.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:18 smithi195 bash[18068]: audit 2024-02-22T22:29:17.826708+0000 mon.smithi049 (mon.0) 654 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.guejzt' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-02-22T22:29:19.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:18 smithi195 bash[18068]: cluster 2024-02-22T22:29:17.827049+0000 mon.smithi049 (mon.0) 655 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-02-22T22:29:20.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:19 smithi049 bash[14150]: cluster 2024-02-22T22:29:18.835610+0000 mon.smithi049 (mon.0) 656 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-02-22T22:29:20.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:19 smithi049 bash[14150]: audit 2024-02-22T22:29:18.837303+0000 mon.smithi195 (mon.1) 19 : audit [INF] from='client.? 172.21.15.195:0/3494047888' entity='client.rgw.foorgw.smithi195.guejzt' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-02-22T22:29:20.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:19 smithi049 bash[14150]: audit 2024-02-22T22:29:18.841753+0000 mon.smithi049 (mon.0) 657 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.guejzt' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-02-22T22:29:20.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:19 smithi049 bash[14150]: audit 2024-02-22T22:29:18.985038+0000 mon.smithi049 (mon.0) 658 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:20.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:19 smithi049 bash[14150]: audit 2024-02-22T22:29:18.993929+0000 mon.smithi049 (mon.0) 659 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:20.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:19 smithi049 bash[14150]: cephadm 2024-02-22T22:29:19.021519+0000 mgr.smithi049.pzczis (mgr.14180) 279 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi049.mufevn 2024-02-22T22:29:20.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:19 smithi049 bash[14150]: audit 2024-02-22T22:29:19.022044+0000 mon.smithi049 (mon.0) 660 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi049.mufevn", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-02-22T22:29:20.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:19 smithi049 bash[14150]: audit 2024-02-22T22:29:19.028217+0000 mon.smithi049 (mon.0) 661 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi049.mufevn", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-02-22T22:29:20.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:19 smithi049 bash[14150]: cephadm 2024-02-22T22:29:19.029020+0000 mgr.smithi049.pzczis (mgr.14180) 280 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-02-22T22:29:20.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:19 smithi049 bash[14150]: audit 2024-02-22T22:29:19.029401+0000 mon.smithi049 (mon.0) 662 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 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-22T22:29:20.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:19 smithi049 bash[14150]: audit 2024-02-22T22:29:19.033937+0000 mon.smithi049 (mon.0) 663 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 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-22T22:29:20.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:19 smithi049 bash[14150]: audit 2024-02-22T22:29:19.035611+0000 mon.smithi049 (mon.0) 664 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:29:20.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:19 smithi049 bash[14150]: audit 2024-02-22T22:29:19.091782+0000 mon.smithi049 (mon.0) 665 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-02-22T22:29:20.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:19 smithi049 bash[14150]: audit 2024-02-22T22:29:19.096722+0000 mon.smithi049 (mon.0) 666 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-02-22T22:29:20.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:19 smithi049 bash[14150]: cephadm 2024-02-22T22:29:19.155018+0000 mgr.smithi049.pzczis (mgr.14180) 281 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-02-22T22:29:20.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:19 smithi049 bash[14150]: cephadm 2024-02-22T22:29:19.155178+0000 mgr.smithi049.pzczis (mgr.14180) 282 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi049.mufevn-rgw 2024-02-22T22:29:20.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:19 smithi049 bash[14150]: audit 2024-02-22T22:29:19.155695+0000 mon.smithi049 (mon.0) 667 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi049.mufevn-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-22T22:29:20.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:19 smithi049 bash[14150]: audit 2024-02-22T22:29:19.160717+0000 mon.smithi049 (mon.0) 668 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi049.mufevn-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-22T22:29:20.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:19 smithi049 bash[14150]: audit 2024-02-22T22:29:19.166904+0000 mon.smithi049 (mon.0) 669 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:29:20.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:19 smithi049 bash[14150]: cephadm 2024-02-22T22:29:19.167958+0000 mgr.smithi049.pzczis (mgr.14180) 283 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi049.mufevn on smithi049 2024-02-22T22:29:20.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:19 smithi049 bash[14150]: cluster 2024-02-22T22:29:19.514326+0000 mgr.smithi049.pzczis (mgr.14180) 284 : cluster [DBG] pgmap v253: 97 pgs: 14 creating+peering, 50 unknown, 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:29:20.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:19 smithi195 bash[18068]: cluster 2024-02-22T22:29:18.835610+0000 mon.smithi049 (mon.0) 656 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-02-22T22:29:20.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:19 smithi195 bash[18068]: audit 2024-02-22T22:29:18.837303+0000 mon.smithi195 (mon.1) 19 : audit [INF] from='client.? 172.21.15.195:0/3494047888' entity='client.rgw.foorgw.smithi195.guejzt' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-02-22T22:29:20.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:19 smithi195 bash[18068]: audit 2024-02-22T22:29:18.841753+0000 mon.smithi049 (mon.0) 657 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.guejzt' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-02-22T22:29:20.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:19 smithi195 bash[18068]: audit 2024-02-22T22:29:18.985038+0000 mon.smithi049 (mon.0) 658 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:20.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:19 smithi195 bash[18068]: audit 2024-02-22T22:29:18.993929+0000 mon.smithi049 (mon.0) 659 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:20.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:19 smithi195 bash[18068]: cephadm 2024-02-22T22:29:19.021519+0000 mgr.smithi049.pzczis (mgr.14180) 279 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi049.mufevn 2024-02-22T22:29:20.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:19 smithi195 bash[18068]: audit 2024-02-22T22:29:19.022044+0000 mon.smithi049 (mon.0) 660 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi049.mufevn", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-02-22T22:29:20.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:19 smithi195 bash[18068]: audit 2024-02-22T22:29:19.028217+0000 mon.smithi049 (mon.0) 661 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi049.mufevn", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-02-22T22:29:20.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:19 smithi195 bash[18068]: cephadm 2024-02-22T22:29:19.029020+0000 mgr.smithi049.pzczis (mgr.14180) 280 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-02-22T22:29:20.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:19 smithi195 bash[18068]: audit 2024-02-22T22:29:19.029401+0000 mon.smithi049 (mon.0) 662 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 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-22T22:29:20.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:19 smithi195 bash[18068]: audit 2024-02-22T22:29:19.033937+0000 mon.smithi049 (mon.0) 663 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 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-22T22:29:20.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:19 smithi195 bash[18068]: audit 2024-02-22T22:29:19.035611+0000 mon.smithi049 (mon.0) 664 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:29:20.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:19 smithi195 bash[18068]: audit 2024-02-22T22:29:19.091782+0000 mon.smithi049 (mon.0) 665 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-02-22T22:29:20.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:19 smithi195 bash[18068]: audit 2024-02-22T22:29:19.096722+0000 mon.smithi049 (mon.0) 666 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-02-22T22:29:20.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:19 smithi195 bash[18068]: cephadm 2024-02-22T22:29:19.155018+0000 mgr.smithi049.pzczis (mgr.14180) 281 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-02-22T22:29:20.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:19 smithi195 bash[18068]: cephadm 2024-02-22T22:29:19.155178+0000 mgr.smithi049.pzczis (mgr.14180) 282 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi049.mufevn-rgw 2024-02-22T22:29:20.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:19 smithi195 bash[18068]: audit 2024-02-22T22:29:19.155695+0000 mon.smithi049 (mon.0) 667 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi049.mufevn-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-22T22:29:20.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:19 smithi195 bash[18068]: audit 2024-02-22T22:29:19.160717+0000 mon.smithi049 (mon.0) 668 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi049.mufevn-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-22T22:29:20.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:19 smithi195 bash[18068]: audit 2024-02-22T22:29:19.166904+0000 mon.smithi049 (mon.0) 669 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:29:20.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:19 smithi195 bash[18068]: cephadm 2024-02-22T22:29:19.167958+0000 mgr.smithi049.pzczis (mgr.14180) 283 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi049.mufevn on smithi049 2024-02-22T22:29:20.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:19 smithi195 bash[18068]: cluster 2024-02-22T22:29:19.514326+0000 mgr.smithi049.pzczis (mgr.14180) 284 : cluster [DBG] pgmap v253: 97 pgs: 14 creating+peering, 50 unknown, 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:29:20.536 INFO:teuthology.orchestra.run.smithi049.stdout:Setting up docutils-common (0.16+dfsg-2) ... 2024-02-22T22:29:21.057 INFO:teuthology.orchestra.run.smithi049.stdout:Processing triggers for man-db (2.9.1-1) ... 2024-02-22T22:29:21.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:20 smithi049 bash[14150]: audit 2024-02-22T22:29:19.840147+0000 mon.smithi049 (mon.0) 670 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.guejzt' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-02-22T22:29:21.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:20 smithi049 bash[14150]: cluster 2024-02-22T22:29:19.840432+0000 mon.smithi049 (mon.0) 671 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-02-22T22:29:21.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:20 smithi195 bash[18068]: audit 2024-02-22T22:29:19.840147+0000 mon.smithi049 (mon.0) 670 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.guejzt' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-02-22T22:29:21.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:20 smithi195 bash[18068]: cluster 2024-02-22T22:29:19.840432+0000 mon.smithi049 (mon.0) 671 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-02-22T22:29:21.867 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:21 smithi049 bash[14150]: audit 2024-02-22T22:29:20.857090+0000 mon.smithi195 (mon.1) 20 : audit [INF] from='client.? 172.21.15.195:0/3494047888' entity='client.rgw.foorgw.smithi195.guejzt' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-22T22:29:21.868 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:21 smithi049 bash[14150]: cluster 2024-02-22T22:29:20.857368+0000 mon.smithi049 (mon.0) 672 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-02-22T22:29:21.868 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:21 smithi049 bash[14150]: audit 2024-02-22T22:29:20.869161+0000 mon.smithi049 (mon.0) 673 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.guejzt' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-22T22:29:21.868 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:21 smithi049 bash[14150]: audit 2024-02-22T22:29:21.077936+0000 mon.smithi049 (mon.0) 674 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:21.868 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:21 smithi049 bash[14150]: cluster 2024-02-22T22:29:21.514814+0000 mgr.smithi049.pzczis (mgr.14180) 285 : cluster [DBG] pgmap v256: 129 pgs: 14 creating+peering, 43 unknown, 72 active+clean; 1.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 767 B/s rd, 511 B/s wr, 1 op/s 2024-02-22T22:29:21.868 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:21 smithi049 bash[14150]: audit 2024-02-22T22:29:21.858195+0000 mon.smithi049 (mon.0) 675 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.guejzt' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-02-22T22:29:21.868 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:21 smithi049 bash[14150]: cluster 2024-02-22T22:29:21.858402+0000 mon.smithi049 (mon.0) 676 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-02-22T22:29:22.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:21 smithi195 bash[18068]: audit 2024-02-22T22:29:20.857090+0000 mon.smithi195 (mon.1) 20 : audit [INF] from='client.? 172.21.15.195:0/3494047888' entity='client.rgw.foorgw.smithi195.guejzt' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-22T22:29:22.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:21 smithi195 bash[18068]: cluster 2024-02-22T22:29:20.857368+0000 mon.smithi049 (mon.0) 672 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-02-22T22:29:22.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:21 smithi195 bash[18068]: audit 2024-02-22T22:29:20.869161+0000 mon.smithi049 (mon.0) 673 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.guejzt' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-22T22:29:22.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:21 smithi195 bash[18068]: audit 2024-02-22T22:29:21.077936+0000 mon.smithi049 (mon.0) 674 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:22.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:21 smithi195 bash[18068]: cluster 2024-02-22T22:29:21.514814+0000 mgr.smithi049.pzczis (mgr.14180) 285 : cluster [DBG] pgmap v256: 129 pgs: 14 creating+peering, 43 unknown, 72 active+clean; 1.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 767 B/s rd, 511 B/s wr, 1 op/s 2024-02-22T22:29:22.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:21 smithi195 bash[18068]: audit 2024-02-22T22:29:21.858195+0000 mon.smithi049 (mon.0) 675 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.guejzt' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-02-22T22:29:22.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:21 smithi195 bash[18068]: cluster 2024-02-22T22:29:21.858402+0000 mon.smithi049 (mon.0) 676 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-02-22T22:29:22.356 INFO:teuthology.orchestra.run.smithi049.stdout:Processing triggers for shared-mime-info (1.15-1) ... 2024-02-22T22:29:24.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:23 smithi049 bash[14150]: cluster 2024-02-22T22:29:22.928130+0000 mon.smithi049 (mon.0) 677 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-02-22T22:29:24.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:23 smithi049 bash[14150]: audit 2024-02-22T22:29:22.929222+0000 mon.smithi195 (mon.1) 21 : audit [INF] from='client.? 172.21.15.49:0/3812184746' entity='client.rgw.foorgw.smithi049.rkfzgw' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-22T22:29:24.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:23 smithi049 bash[14150]: audit 2024-02-22T22:29:22.932882+0000 mon.smithi195 (mon.1) 22 : audit [INF] from='client.? 172.21.15.195:0/4060859363' entity='client.rgw.foorgw.smithi195.guejzt' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-22T22:29:24.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:23 smithi049 bash[14150]: audit 2024-02-22T22:29:22.942688+0000 mon.smithi049 (mon.0) 678 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi049.rkfzgw' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-22T22:29:24.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:23 smithi049 bash[14150]: audit 2024-02-22T22:29:22.943159+0000 mon.smithi049 (mon.0) 679 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.guejzt' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-22T22:29:24.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:23 smithi049 bash[14150]: audit 2024-02-22T22:29:22.956210+0000 mon.smithi049 (mon.0) 680 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:24.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:23 smithi049 bash[14150]: audit 2024-02-22T22:29:22.967609+0000 mon.smithi049 (mon.0) 681 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:24.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:23 smithi049 bash[14150]: cephadm 2024-02-22T22:29:22.983811+0000 mgr.smithi049.pzczis (mgr.14180) 286 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.xtjxhe on smithi195 2024-02-22T22:29:24.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:23 smithi049 bash[14150]: cluster 2024-02-22T22:29:23.515642+0000 mgr.smithi049.pzczis (mgr.14180) 287 : cluster [DBG] pgmap v259: 161 pgs: 53 unknown, 108 active+clean; 1.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.2 KiB/s rd, 1.7 KiB/s wr, 6 op/s 2024-02-22T22:29:24.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:23 smithi195 bash[18068]: cluster 2024-02-22T22:29:22.928130+0000 mon.smithi049 (mon.0) 677 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-02-22T22:29:24.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:23 smithi195 bash[18068]: audit 2024-02-22T22:29:22.929222+0000 mon.smithi195 (mon.1) 21 : audit [INF] from='client.? 172.21.15.49:0/3812184746' entity='client.rgw.foorgw.smithi049.rkfzgw' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-22T22:29:24.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:23 smithi195 bash[18068]: audit 2024-02-22T22:29:22.932882+0000 mon.smithi195 (mon.1) 22 : audit [INF] from='client.? 172.21.15.195:0/4060859363' entity='client.rgw.foorgw.smithi195.guejzt' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-22T22:29:24.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:23 smithi195 bash[18068]: audit 2024-02-22T22:29:22.942688+0000 mon.smithi049 (mon.0) 678 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi049.rkfzgw' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-22T22:29:24.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:23 smithi195 bash[18068]: audit 2024-02-22T22:29:22.943159+0000 mon.smithi049 (mon.0) 679 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.guejzt' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-22T22:29:24.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:23 smithi195 bash[18068]: audit 2024-02-22T22:29:22.956210+0000 mon.smithi049 (mon.0) 680 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:24.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:23 smithi195 bash[18068]: audit 2024-02-22T22:29:22.967609+0000 mon.smithi049 (mon.0) 681 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:24.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:23 smithi195 bash[18068]: cephadm 2024-02-22T22:29:22.983811+0000 mgr.smithi049.pzczis (mgr.14180) 286 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.xtjxhe on smithi195 2024-02-22T22:29:24.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:23 smithi195 bash[18068]: cluster 2024-02-22T22:29:23.515642+0000 mgr.smithi049.pzczis (mgr.14180) 287 : cluster [DBG] pgmap v259: 161 pgs: 53 unknown, 108 active+clean; 1.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.2 KiB/s rd, 1.7 KiB/s wr, 6 op/s 2024-02-22T22:29:25.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:24 smithi195 bash[18068]: audit 2024-02-22T22:29:23.933421+0000 mon.smithi195 (mon.1) 23 : audit [INF] from='client.? 172.21.15.195:0/4060859363' entity='client.rgw.foorgw.smithi195.guejzt' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-22T22:29:25.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:24 smithi195 bash[18068]: audit 2024-02-22T22:29:23.934451+0000 mon.smithi195 (mon.1) 24 : audit [INF] from='client.? 172.21.15.49:0/3812184746' entity='client.rgw.foorgw.smithi049.rkfzgw' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-22T22:29:25.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:24 smithi195 bash[18068]: audit 2024-02-22T22:29:23.934531+0000 mon.smithi049 (mon.0) 682 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi049.rkfzgw' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-02-22T22:29:25.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:24 smithi195 bash[18068]: audit 2024-02-22T22:29:23.934908+0000 mon.smithi049 (mon.0) 683 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.guejzt' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-02-22T22:29:25.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:24 smithi195 bash[18068]: cluster 2024-02-22T22:29:23.935057+0000 mon.smithi049 (mon.0) 684 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-02-22T22:29:25.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:24 smithi195 bash[18068]: audit 2024-02-22T22:29:23.945850+0000 mon.smithi049 (mon.0) 685 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.guejzt' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-22T22:29:25.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:24 smithi195 bash[18068]: audit 2024-02-22T22:29:23.946359+0000 mon.smithi049 (mon.0) 686 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi049.rkfzgw' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-22T22:29:25.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:24 smithi049 bash[14150]: audit 2024-02-22T22:29:23.933421+0000 mon.smithi195 (mon.1) 23 : audit [INF] from='client.? 172.21.15.195:0/4060859363' entity='client.rgw.foorgw.smithi195.guejzt' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-22T22:29:25.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:24 smithi049 bash[14150]: audit 2024-02-22T22:29:23.934451+0000 mon.smithi195 (mon.1) 24 : audit [INF] from='client.? 172.21.15.49:0/3812184746' entity='client.rgw.foorgw.smithi049.rkfzgw' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-22T22:29:25.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:24 smithi049 bash[14150]: audit 2024-02-22T22:29:23.934531+0000 mon.smithi049 (mon.0) 682 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi049.rkfzgw' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-02-22T22:29:25.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:24 smithi049 bash[14150]: audit 2024-02-22T22:29:23.934908+0000 mon.smithi049 (mon.0) 683 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.guejzt' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-02-22T22:29:25.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:24 smithi049 bash[14150]: cluster 2024-02-22T22:29:23.935057+0000 mon.smithi049 (mon.0) 684 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-02-22T22:29:25.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:24 smithi049 bash[14150]: audit 2024-02-22T22:29:23.945850+0000 mon.smithi049 (mon.0) 685 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.guejzt' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-22T22:29:25.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:24 smithi049 bash[14150]: audit 2024-02-22T22:29:23.946359+0000 mon.smithi049 (mon.0) 686 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi049.rkfzgw' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-22T22:29:26.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:25 smithi195 bash[18068]: audit 2024-02-22T22:29:24.946122+0000 mon.smithi049 (mon.0) 687 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.guejzt' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-22T22:29:26.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:25 smithi195 bash[18068]: audit 2024-02-22T22:29:24.946302+0000 mon.smithi049 (mon.0) 688 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi049.rkfzgw' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-22T22:29:26.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:25 smithi195 bash[18068]: cluster 2024-02-22T22:29:24.946444+0000 mon.smithi049 (mon.0) 689 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-02-22T22:29:26.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:25 smithi195 bash[18068]: cluster 2024-02-22T22:29:25.516466+0000 mgr.smithi049.pzczis (mgr.14180) 288 : cluster [DBG] pgmap v262: 161 pgs: 29 unknown, 132 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 30 KiB/s rd, 3.5 KiB/s wr, 63 op/s 2024-02-22T22:29:26.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:25 smithi049 bash[14150]: audit 2024-02-22T22:29:24.946122+0000 mon.smithi049 (mon.0) 687 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.guejzt' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-22T22:29:26.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:25 smithi049 bash[14150]: audit 2024-02-22T22:29:24.946302+0000 mon.smithi049 (mon.0) 688 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi049.rkfzgw' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-22T22:29:26.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:25 smithi049 bash[14150]: cluster 2024-02-22T22:29:24.946444+0000 mon.smithi049 (mon.0) 689 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-02-22T22:29:26.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:25 smithi049 bash[14150]: cluster 2024-02-22T22:29:25.516466+0000 mgr.smithi049.pzczis (mgr.14180) 288 : cluster [DBG] pgmap v262: 161 pgs: 29 unknown, 132 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 30 KiB/s rd, 3.5 KiB/s wr, 63 op/s 2024-02-22T22:29:27.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:27 smithi049 bash[14150]: audit 2024-02-22T22:29:26.091787+0000 mon.smithi049 (mon.0) 690 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:27.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:27 smithi049 bash[14150]: audit 2024-02-22T22:29:26.815625+0000 mon.smithi049 (mon.0) 691 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.xtjxhe"}]: dispatch 2024-02-22T22:29:27.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:27 smithi195 bash[18068]: audit 2024-02-22T22:29:26.091787+0000 mon.smithi049 (mon.0) 690 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:27.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:27 smithi195 bash[18068]: audit 2024-02-22T22:29:26.815625+0000 mon.smithi049 (mon.0) 691 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.xtjxhe"}]: dispatch 2024-02-22T22:29:28.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: cephadm 2024-02-22T22:29:26.814527+0000 mgr.smithi049.pzczis (mgr.14180) 289 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-xtjxhe 2024-02-22T22:29:28.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:28.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-xtjxhe 2024-02-22T22:29:28.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.xtjxhe 2024-02-22T22:29:28.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:28.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.xtjxhe 2024-02-22T22:29:28.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.xtjxhe ... 2024-02-22T22:29:28.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:28.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:28.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:28.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:28.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:28.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:29:28.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:29:28.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:29:28.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:29:28.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:29:28.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-xtjxhe 2024-02-22T22:29:28.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:28.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-xtjxhe 2024-02-22T22:29:28.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.xtjxhe 2024-02-22T22:29:28.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:28.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.xtjxhe 2024-02-22T22:29:28.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.xtjxhe ... 2024-02-22T22:29:28.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:28.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:28.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:28.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:28.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:28.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: cephadm 2024-02-22T22:29:26.814882+0000 mgr.smithi049.pzczis (mgr.14180) 290 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.xtjxhe 2024-02-22T22:29:28.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: cephadm 2024-02-22T22:29:26.817275+0000 mgr.smithi049.pzczis (mgr.14180) 291 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.xtjxhe on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-xtjxhe 2024-02-22T22:29:28.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:28.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-xtjxhe 2024-02-22T22:29:28.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.xtjxhe 2024-02-22T22:29:28.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:28.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.xtjxhe 2024-02-22T22:29:28.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.xtjxhe ... 2024-02-22T22:29:28.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:28.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:28.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:28.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:28.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:28.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: cephadm 2024-02-22T22:29:26.822113+0000 mgr.smithi049.pzczis (mgr.14180) 292 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.nviewh on smithi049 2024-02-22T22:29:28.446 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:28 smithi049 bash[14150]: cluster 2024-02-22T22:29:27.517764+0000 mgr.smithi049.pzczis (mgr.14180) 293 : cluster [DBG] pgmap v263: 161 pgs: 5 unknown, 156 active+clean; 4.8 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 120 KiB/s rd, 7.6 KiB/s wr, 242 op/s 2024-02-22T22:29:28.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: cephadm 2024-02-22T22:29:26.814527+0000 mgr.smithi049.pzczis (mgr.14180) 289 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-xtjxhe 2024-02-22T22:29:28.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:28.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-xtjxhe 2024-02-22T22:29:28.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.xtjxhe 2024-02-22T22:29:28.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:28.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.xtjxhe 2024-02-22T22:29:28.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.xtjxhe ... 2024-02-22T22:29:28.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:28.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:28.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:28.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:28.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:28.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:29:28.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:29:28.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:29:28.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:29:28.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:29:28.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-xtjxhe 2024-02-22T22:29:28.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:28.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-xtjxhe 2024-02-22T22:29:28.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.xtjxhe 2024-02-22T22:29:28.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:28.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.xtjxhe 2024-02-22T22:29:28.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.xtjxhe ... 2024-02-22T22:29:28.558 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:28.558 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:28.558 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:28.558 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:28.558 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:28.558 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: cephadm 2024-02-22T22:29:26.814882+0000 mgr.smithi049.pzczis (mgr.14180) 290 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.xtjxhe 2024-02-22T22:29:28.558 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: cephadm 2024-02-22T22:29:26.817275+0000 mgr.smithi049.pzczis (mgr.14180) 291 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.xtjxhe on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-xtjxhe 2024-02-22T22:29:28.558 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:28.558 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-xtjxhe 2024-02-22T22:29:28.558 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.xtjxhe 2024-02-22T22:29:28.558 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:28.558 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.xtjxhe 2024-02-22T22:29:28.558 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.xtjxhe ... 2024-02-22T22:29:28.558 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:28.558 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:28.559 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:28.559 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:28.559 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:28.559 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: cephadm 2024-02-22T22:29:26.822113+0000 mgr.smithi049.pzczis (mgr.14180) 292 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.nviewh on smithi049 2024-02-22T22:29:28.559 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:28 smithi195 bash[18068]: cluster 2024-02-22T22:29:27.517764+0000 mgr.smithi049.pzczis (mgr.14180) 293 : cluster [DBG] pgmap v263: 161 pgs: 5 unknown, 156 active+clean; 4.8 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 120 KiB/s rd, 7.6 KiB/s wr, 242 op/s 2024-02-22T22:29:30.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:30 smithi049 bash[14150]: cluster 2024-02-22T22:29:29.518634+0000 mgr.smithi049.pzczis (mgr.14180) 294 : cluster [DBG] pgmap v264: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 105 KiB/s rd, 5.9 KiB/s wr, 213 op/s 2024-02-22T22:29:31.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:30 smithi195 bash[18068]: cluster 2024-02-22T22:29:29.518634+0000 mgr.smithi049.pzczis (mgr.14180) 294 : cluster [DBG] pgmap v264: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 105 KiB/s rd, 5.9 KiB/s wr, 213 op/s 2024-02-22T22:29:31.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:31 smithi049 bash[14150]: audit 2024-02-22T22:29:30.692654+0000 mon.smithi049 (mon.0) 692 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.nviewh"}]: dispatch 2024-02-22T22:29:31.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:31 smithi049 bash[14150]: audit 2024-02-22T22:29:30.702844+0000 mon.smithi049 (mon.0) 693 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:31.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:31 smithi049 bash[14150]: audit 2024-02-22T22:29:30.707782+0000 mon.smithi049 (mon.0) 694 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:29:31.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:31 smithi049 bash[14150]: audit 2024-02-22T22:29:31.103768+0000 mon.smithi049 (mon.0) 695 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:32.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:31 smithi195 bash[18068]: audit 2024-02-22T22:29:30.692654+0000 mon.smithi049 (mon.0) 692 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.nviewh"}]: dispatch 2024-02-22T22:29:32.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:31 smithi195 bash[18068]: audit 2024-02-22T22:29:30.702844+0000 mon.smithi049 (mon.0) 693 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:32.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:31 smithi195 bash[18068]: audit 2024-02-22T22:29:30.707782+0000 mon.smithi049 (mon.0) 694 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:29:32.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:31 smithi195 bash[18068]: audit 2024-02-22T22:29:31.103768+0000 mon.smithi049 (mon.0) 695 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:32.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: cephadm 2024-02-22T22:29:30.691812+0000 mgr.smithi049.pzczis (mgr.14180) 295 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-nviewh 2024-02-22T22:29:32.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:32.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-nviewh 2024-02-22T22:29:32.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.nviewh 2024-02-22T22:29:32.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:32.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.nviewh 2024-02-22T22:29:32.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.nviewh ... 2024-02-22T22:29:32.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:32.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:32.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:32.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:32.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:32.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:29:32.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:29:32.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:29:32.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:29:32.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:29:32.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-nviewh 2024-02-22T22:29:32.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:32.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-nviewh 2024-02-22T22:29:32.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.nviewh 2024-02-22T22:29:32.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:32.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.nviewh 2024-02-22T22:29:32.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.nviewh ... 2024-02-22T22:29:32.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:32.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:32.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:32.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:32.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:32.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: cephadm 2024-02-22T22:29:30.692240+0000 mgr.smithi049.pzczis (mgr.14180) 296 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.nviewh 2024-02-22T22:29:32.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: cephadm 2024-02-22T22:29:30.693914+0000 mgr.smithi049.pzczis (mgr.14180) 297 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.nviewh on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-nviewh 2024-02-22T22:29:32.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:32.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-nviewh 2024-02-22T22:29:32.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.nviewh 2024-02-22T22:29:32.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:32.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.nviewh 2024-02-22T22:29:32.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.nviewh ... 2024-02-22T22:29:32.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:32.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:32.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:32.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:32.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:32.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: cephadm 2024-02-22T22:29:30.703360+0000 mgr.smithi049.pzczis (mgr.14180) 298 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.nvnxha on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:29:32.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: cephadm 2024-02-22T22:29:30.706206+0000 mgr.smithi049.pzczis (mgr.14180) 299 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.xdcymx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:29:32.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: cluster 2024-02-22T22:29:30.707510+0000 mgr.smithi049.pzczis (mgr.14180) 300 : cluster [DBG] pgmap v265: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 115 KiB/s rd, 5.4 KiB/s wr, 232 op/s 2024-02-22T22:29:32.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:32 smithi049 bash[14150]: cluster 2024-02-22T22:29:31.699760+0000 mon.smithi049 (mon.0) 696 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:29:33.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: cephadm 2024-02-22T22:29:30.691812+0000 mgr.smithi049.pzczis (mgr.14180) 295 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-nviewh 2024-02-22T22:29:33.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:33.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-nviewh 2024-02-22T22:29:33.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.nviewh 2024-02-22T22:29:33.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:33.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.nviewh 2024-02-22T22:29:33.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.nviewh ... 2024-02-22T22:29:33.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:33.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:33.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:33.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:33.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:33.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:29:33.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:29:33.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:29:33.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:29:33.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:29:33.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-nviewh 2024-02-22T22:29:33.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:33.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-nviewh 2024-02-22T22:29:33.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.nviewh 2024-02-22T22:29:33.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:33.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.nviewh 2024-02-22T22:29:33.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.nviewh ... 2024-02-22T22:29:33.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:33.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:33.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:33.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:33.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:33.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: cephadm 2024-02-22T22:29:30.692240+0000 mgr.smithi049.pzczis (mgr.14180) 296 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.nviewh 2024-02-22T22:29:33.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: cephadm 2024-02-22T22:29:30.693914+0000 mgr.smithi049.pzczis (mgr.14180) 297 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.nviewh on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-nviewh 2024-02-22T22:29:33.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:33.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-nviewh 2024-02-22T22:29:33.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.nviewh 2024-02-22T22:29:33.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:33.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.nviewh 2024-02-22T22:29:33.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.nviewh ... 2024-02-22T22:29:33.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:33.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:33.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:33.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:33.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:33.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: cephadm 2024-02-22T22:29:30.703360+0000 mgr.smithi049.pzczis (mgr.14180) 298 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.nvnxha on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:29:33.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: cephadm 2024-02-22T22:29:30.706206+0000 mgr.smithi049.pzczis (mgr.14180) 299 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.xdcymx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:29:33.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: cluster 2024-02-22T22:29:30.707510+0000 mgr.smithi049.pzczis (mgr.14180) 300 : cluster [DBG] pgmap v265: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 115 KiB/s rd, 5.4 KiB/s wr, 232 op/s 2024-02-22T22:29:33.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:32 smithi195 bash[18068]: cluster 2024-02-22T22:29:31.699760+0000 mon.smithi049 (mon.0) 696 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:29:34.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:34 smithi049 bash[14150]: cluster 2024-02-22T22:29:32.708850+0000 mgr.smithi049.pzczis (mgr.14180) 301 : cluster [DBG] pgmap v266: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 94 KiB/s rd, 4.4 KiB/s wr, 190 op/s 2024-02-22T22:29:35.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:34 smithi195 bash[18068]: cluster 2024-02-22T22:29:32.708850+0000 mgr.smithi049.pzczis (mgr.14180) 301 : cluster [DBG] pgmap v266: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 94 KiB/s rd, 4.4 KiB/s wr, 190 op/s 2024-02-22T22:29:36.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:36 smithi049 bash[14150]: cluster 2024-02-22T22:29:34.709878+0000 mgr.smithi049.pzczis (mgr.14180) 302 : cluster [DBG] pgmap v267: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 KiB/s rd, 4.0 KiB/s wr, 171 op/s 2024-02-22T22:29:36.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:36 smithi049 bash[14150]: audit 2024-02-22T22:29:36.114581+0000 mon.smithi049 (mon.0) 697 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:36.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:36 smithi049 bash[14150]: audit 2024-02-22T22:29:36.224023+0000 mon.smithi049 (mon.0) 698 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:37.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:36 smithi195 bash[18068]: cluster 2024-02-22T22:29:34.709878+0000 mgr.smithi049.pzczis (mgr.14180) 302 : cluster [DBG] pgmap v267: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 KiB/s rd, 4.0 KiB/s wr, 171 op/s 2024-02-22T22:29:37.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:36 smithi195 bash[18068]: audit 2024-02-22T22:29:36.114581+0000 mon.smithi049 (mon.0) 697 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:37.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:36 smithi195 bash[18068]: audit 2024-02-22T22:29:36.224023+0000 mon.smithi049 (mon.0) 698 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:38.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:37 smithi195 bash[18068]: cluster 2024-02-22T22:29:36.710996+0000 mgr.smithi049.pzczis (mgr.14180) 303 : cluster [DBG] pgmap v268: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 64 KiB/s rd, 2.7 KiB/s wr, 128 op/s 2024-02-22T22:29:38.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:37 smithi195 bash[18068]: audit 2024-02-22T22:29:36.768581+0000 mon.smithi049 (mon.0) 699 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:38.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:37 smithi195 bash[18068]: audit 2024-02-22T22:29:36.770880+0000 mon.smithi049 (mon.0) 700 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:29:38.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:37 smithi195 bash[18068]: audit 2024-02-22T22:29:36.772639+0000 mon.smithi049 (mon.0) 701 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:29:38.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:37 smithi195 bash[18068]: cephadm 2024-02-22T22:29:36.779426+0000 mgr.smithi049.pzczis (mgr.14180) 304 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-02-22T22:29:38.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:37 smithi195 bash[18068]: audit 2024-02-22T22:29:37.215394+0000 mon.smithi049 (mon.0) 702 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:38.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:37 smithi195 bash[18068]: audit 2024-02-22T22:29:37.226257+0000 mon.smithi049 (mon.0) 703 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:38.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:37 smithi195 bash[18068]: audit 2024-02-22T22:29:37.232526+0000 mon.smithi049 (mon.0) 704 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:38.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:37 smithi195 bash[18068]: cluster 2024-02-22T22:29:37.234358+0000 mgr.smithi049.pzczis (mgr.14180) 305 : cluster [DBG] pgmap v269: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 17 KiB/s rd, 105 B/s wr, 32 op/s 2024-02-22T22:29:38.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:37 smithi195 bash[18068]: audit 2024-02-22T22:29:37.244038+0000 mon.smithi049 (mon.0) 705 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:29:38.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:37 smithi195 bash[18068]: audit 2024-02-22T22:29:37.265953+0000 mon.smithi049 (mon.0) 706 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:38.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:37 smithi195 bash[18068]: cephadm 2024-02-22T22:29:37.271157+0000 mgr.smithi049.pzczis (mgr.14180) 306 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.uzwana on smithi195 2024-02-22T22:29:38.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:37 smithi195 bash[18068]: cluster 2024-02-22T22:29:37.590049+0000 mon.smithi049 (mon.0) 707 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:29:38.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:37 smithi195 bash[18068]: cluster 2024-02-22T22:29:37.590109+0000 mon.smithi049 (mon.0) 708 : cluster [INF] Cluster is now healthy 2024-02-22T22:29:38.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:37 smithi049 bash[14150]: cluster 2024-02-22T22:29:36.710996+0000 mgr.smithi049.pzczis (mgr.14180) 303 : cluster [DBG] pgmap v268: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 64 KiB/s rd, 2.7 KiB/s wr, 128 op/s 2024-02-22T22:29:38.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:37 smithi049 bash[14150]: audit 2024-02-22T22:29:36.768581+0000 mon.smithi049 (mon.0) 699 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:38.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:37 smithi049 bash[14150]: audit 2024-02-22T22:29:36.770880+0000 mon.smithi049 (mon.0) 700 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:29:38.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:37 smithi049 bash[14150]: audit 2024-02-22T22:29:36.772639+0000 mon.smithi049 (mon.0) 701 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:29:38.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:37 smithi049 bash[14150]: cephadm 2024-02-22T22:29:36.779426+0000 mgr.smithi049.pzczis (mgr.14180) 304 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-02-22T22:29:38.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:37 smithi049 bash[14150]: audit 2024-02-22T22:29:37.215394+0000 mon.smithi049 (mon.0) 702 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:38.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:37 smithi049 bash[14150]: audit 2024-02-22T22:29:37.226257+0000 mon.smithi049 (mon.0) 703 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:38.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:37 smithi049 bash[14150]: audit 2024-02-22T22:29:37.232526+0000 mon.smithi049 (mon.0) 704 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:38.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:37 smithi049 bash[14150]: cluster 2024-02-22T22:29:37.234358+0000 mgr.smithi049.pzczis (mgr.14180) 305 : cluster [DBG] pgmap v269: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 17 KiB/s rd, 105 B/s wr, 32 op/s 2024-02-22T22:29:38.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:37 smithi049 bash[14150]: audit 2024-02-22T22:29:37.244038+0000 mon.smithi049 (mon.0) 705 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:29:38.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:37 smithi049 bash[14150]: audit 2024-02-22T22:29:37.265953+0000 mon.smithi049 (mon.0) 706 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:38.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:37 smithi049 bash[14150]: cephadm 2024-02-22T22:29:37.271157+0000 mgr.smithi049.pzczis (mgr.14180) 306 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.uzwana on smithi195 2024-02-22T22:29:38.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:37 smithi049 bash[14150]: cluster 2024-02-22T22:29:37.590049+0000 mon.smithi049 (mon.0) 707 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:29:38.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:37 smithi049 bash[14150]: cluster 2024-02-22T22:29:37.590109+0000 mon.smithi049 (mon.0) 708 : cluster [INF] Cluster is now healthy 2024-02-22T22:29:40.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:40 smithi195 bash[18068]: cluster 2024-02-22T22:29:39.235272+0000 mgr.smithi049.pzczis (mgr.14180) 307 : cluster [DBG] pgmap v270: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 15 KiB/s rd, 0 B/s wr, 27 op/s 2024-02-22T22:29:40.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:40 smithi049 bash[14150]: cluster 2024-02-22T22:29:39.235272+0000 mgr.smithi049.pzczis (mgr.14180) 307 : cluster [DBG] pgmap v270: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 15 KiB/s rd, 0 B/s wr, 27 op/s 2024-02-22T22:29:41.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:41 smithi049 bash[14150]: audit 2024-02-22T22:29:41.082328+0000 mon.smithi049 (mon.0) 709 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.uzwana"}]: dispatch 2024-02-22T22:29:41.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:41 smithi195 bash[18068]: audit 2024-02-22T22:29:41.082328+0000 mon.smithi049 (mon.0) 709 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.uzwana"}]: dispatch 2024-02-22T22:29:42.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: cephadm 2024-02-22T22:29:41.081112+0000 mgr.smithi049.pzczis (mgr.14180) 308 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uzwana 2024-02-22T22:29:42.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:42.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uzwana 2024-02-22T22:29:42.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uzwana 2024-02-22T22:29:42.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:42.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uzwana 2024-02-22T22:29:42.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.uzwana ... 2024-02-22T22:29:42.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:42.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:42.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:42.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:42.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:42.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:29:42.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:29:42.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:29:42.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:29:42.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:29:42.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uzwana 2024-02-22T22:29:42.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:42.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uzwana 2024-02-22T22:29:42.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uzwana 2024-02-22T22:29:42.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:42.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uzwana 2024-02-22T22:29:42.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.uzwana ... 2024-02-22T22:29:42.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:42.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:42.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:42.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:42.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:42.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: cephadm 2024-02-22T22:29:41.081764+0000 mgr.smithi049.pzczis (mgr.14180) 309 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.uzwana 2024-02-22T22:29:42.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: cephadm 2024-02-22T22:29:41.083767+0000 mgr.smithi049.pzczis (mgr.14180) 310 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.uzwana on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uzwana 2024-02-22T22:29:42.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:42.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uzwana 2024-02-22T22:29:42.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uzwana 2024-02-22T22:29:42.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:42.558 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uzwana 2024-02-22T22:29:42.558 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.uzwana ... 2024-02-22T22:29:42.558 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:42.558 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:42.558 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:42.558 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:42.558 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:42.558 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: cephadm 2024-02-22T22:29:41.089773+0000 mgr.smithi049.pzczis (mgr.14180) 311 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.kaufaz on smithi049 2024-02-22T22:29:42.558 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:42 smithi195 bash[18068]: cluster 2024-02-22T22:29:41.235993+0000 mgr.smithi049.pzczis (mgr.14180) 312 : cluster [DBG] pgmap v271: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.4 KiB/s rd, 97 B/s wr, 2 op/s 2024-02-22T22:29:42.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: cephadm 2024-02-22T22:29:41.081112+0000 mgr.smithi049.pzczis (mgr.14180) 308 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uzwana 2024-02-22T22:29:42.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:42.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uzwana 2024-02-22T22:29:42.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uzwana 2024-02-22T22:29:42.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:42.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uzwana 2024-02-22T22:29:42.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.uzwana ... 2024-02-22T22:29:42.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:42.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:42.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:42.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:42.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:42.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:29:42.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:29:42.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:29:42.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:29:42.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:29:42.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uzwana 2024-02-22T22:29:42.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:42.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uzwana 2024-02-22T22:29:42.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uzwana 2024-02-22T22:29:42.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:42.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uzwana 2024-02-22T22:29:42.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.uzwana ... 2024-02-22T22:29:42.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:42.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:42.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:42.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:42.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:42.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: cephadm 2024-02-22T22:29:41.081764+0000 mgr.smithi049.pzczis (mgr.14180) 309 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.uzwana 2024-02-22T22:29:42.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: cephadm 2024-02-22T22:29:41.083767+0000 mgr.smithi049.pzczis (mgr.14180) 310 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.uzwana on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uzwana 2024-02-22T22:29:42.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:42.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uzwana 2024-02-22T22:29:42.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uzwana 2024-02-22T22:29:42.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:42.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uzwana 2024-02-22T22:29:42.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.uzwana ... 2024-02-22T22:29:42.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:42.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:42.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:42.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:42.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:42.696 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: cephadm 2024-02-22T22:29:41.089773+0000 mgr.smithi049.pzczis (mgr.14180) 311 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.kaufaz on smithi049 2024-02-22T22:29:42.696 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:42 smithi049 bash[14150]: cluster 2024-02-22T22:29:41.235993+0000 mgr.smithi049.pzczis (mgr.14180) 312 : cluster [DBG] pgmap v271: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.4 KiB/s rd, 97 B/s wr, 2 op/s 2024-02-22T22:29:44.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:44 smithi049 bash[14150]: cluster 2024-02-22T22:29:43.237101+0000 mgr.smithi049.pzczis (mgr.14180) 313 : cluster [DBG] pgmap v272: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.4 KiB/s rd, 194 B/s wr, 2 op/s 2024-02-22T22:29:44.741 INFO:teuthology.orchestra.run.smithi049.stdout:Processing triggers for sgml-base (1.29.1) ... 2024-02-22T22:29:44.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:44 smithi195 bash[18068]: cluster 2024-02-22T22:29:43.237101+0000 mgr.smithi049.pzczis (mgr.14180) 313 : cluster [DBG] pgmap v272: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.4 KiB/s rd, 194 B/s wr, 2 op/s 2024-02-22T22:29:45.059 INFO:teuthology.orchestra.run.smithi049.stdout:Setting up python3-docutils (0.16+dfsg-2) ... 2024-02-22T22:29:45.489 INFO:teuthology.orchestra.run.smithi049.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst-buildhtml to provide /usr/bin/rst-buildhtml (rst-buildhtml) in auto mode 2024-02-22T22:29:45.523 INFO:teuthology.orchestra.run.smithi049.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2html to provide /usr/bin/rst2html (rst2html) in auto mode 2024-02-22T22:29:45.548 INFO:teuthology.orchestra.run.smithi049.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2html4 to provide /usr/bin/rst2html4 (rst2html4) in auto mode 2024-02-22T22:29:45.574 INFO:teuthology.orchestra.run.smithi049.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2html5 to provide /usr/bin/rst2html5 (rst2html5) in auto mode 2024-02-22T22:29:45.600 INFO:teuthology.orchestra.run.smithi049.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2latex to provide /usr/bin/rst2latex (rst2latex) in auto mode 2024-02-22T22:29:45.625 INFO:teuthology.orchestra.run.smithi049.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2man to provide /usr/bin/rst2man (rst2man) in auto mode 2024-02-22T22:29:45.650 INFO:teuthology.orchestra.run.smithi049.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2odt to provide /usr/bin/rst2odt (rst2odt) in auto mode 2024-02-22T22:29:45.676 INFO:teuthology.orchestra.run.smithi049.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2odt_prepstyles to provide /usr/bin/rst2odt_prepstyles (rst2odt_prepstyles) in auto mode 2024-02-22T22:29:45.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:45 smithi049 bash[14150]: audit 2024-02-22T22:29:45.005045+0000 mon.smithi049 (mon.0) 710 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.kaufaz"}]: dispatch 2024-02-22T22:29:45.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:45 smithi049 bash[14150]: audit 2024-02-22T22:29:45.017835+0000 mon.smithi049 (mon.0) 711 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:29:45.701 INFO:teuthology.orchestra.run.smithi049.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2pseudoxml to provide /usr/bin/rst2pseudoxml (rst2pseudoxml) in auto mode 2024-02-22T22:29:45.731 INFO:teuthology.orchestra.run.smithi049.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2s5 to provide /usr/bin/rst2s5 (rst2s5) in auto mode 2024-02-22T22:29:45.757 INFO:teuthology.orchestra.run.smithi049.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2xetex to provide /usr/bin/rst2xetex (rst2xetex) in auto mode 2024-02-22T22:29:45.782 INFO:teuthology.orchestra.run.smithi049.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2xml to provide /usr/bin/rst2xml (rst2xml) in auto mode 2024-02-22T22:29:45.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:45 smithi195 bash[18068]: audit 2024-02-22T22:29:45.005045+0000 mon.smithi049 (mon.0) 710 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.kaufaz"}]: dispatch 2024-02-22T22:29:45.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:45 smithi195 bash[18068]: audit 2024-02-22T22:29:45.017835+0000 mon.smithi049 (mon.0) 711 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:29:45.807 INFO:teuthology.orchestra.run.smithi049.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rstpep2html to provide /usr/bin/rstpep2html (rstpep2html) in auto mode 2024-02-22T22:29:46.223 INFO:teuthology.orchestra.run.smithi049.stdout:Processing triggers for libc-bin (2.31-0ubuntu9.9) ... 2024-02-22T22:29:46.375 INFO:teuthology.orchestra.run.smithi049.stdout:Setting up python3-botocore (1.16.19+repack-1ubuntu0.20.04.1) ... 2024-02-22T22:29:46.571 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: cephadm 2024-02-22T22:29:45.004032+0000 mgr.smithi049.pzczis (mgr.14180) 314 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kaufaz 2024-02-22T22:29:46.571 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:46.571 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kaufaz 2024-02-22T22:29:46.572 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kaufaz 2024-02-22T22:29:46.572 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:46.572 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kaufaz 2024-02-22T22:29:46.572 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.kaufaz ... 2024-02-22T22:29:46.572 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:46.572 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:46.572 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:46.572 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:46.572 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:46.572 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:29:46.572 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:29:46.572 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:29:46.572 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:29:46.573 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:29:46.573 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kaufaz 2024-02-22T22:29:46.573 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:46.573 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kaufaz 2024-02-22T22:29:46.573 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kaufaz 2024-02-22T22:29:46.573 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:46.573 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kaufaz 2024-02-22T22:29:46.573 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.kaufaz ... 2024-02-22T22:29:46.573 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:46.573 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:46.574 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:46.574 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:46.574 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:46.574 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: cephadm 2024-02-22T22:29:45.004493+0000 mgr.smithi049.pzczis (mgr.14180) 315 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.kaufaz 2024-02-22T22:29:46.574 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: cephadm 2024-02-22T22:29:45.006468+0000 mgr.smithi049.pzczis (mgr.14180) 316 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.kaufaz on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kaufaz 2024-02-22T22:29:46.574 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:46.574 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kaufaz 2024-02-22T22:29:46.574 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kaufaz 2024-02-22T22:29:46.574 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:46.574 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kaufaz 2024-02-22T22:29:46.574 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.kaufaz ... 2024-02-22T22:29:46.574 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:46.574 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:46.574 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:46.575 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:46.575 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:46.575 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: cephadm 2024-02-22T22:29:45.010593+0000 mgr.smithi049.pzczis (mgr.14180) 317 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.udkavg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:29:46.575 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: cephadm 2024-02-22T22:29:45.012399+0000 mgr.smithi049.pzczis (mgr.14180) 318 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.lqjwxx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:29:46.575 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: cluster 2024-02-22T22:29:45.013234+0000 mgr.smithi049.pzczis (mgr.14180) 319 : cluster [DBG] pgmap v273: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.4 KiB/s rd, 198 B/s wr, 2 op/s 2024-02-22T22:29:46.575 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: cluster 2024-02-22T22:29:45.308602+0000 mon.smithi049 (mon.0) 712 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:29:46.575 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:46 smithi049 bash[14150]: audit 2024-02-22T22:29:46.129059+0000 mon.smithi049 (mon.0) 713 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:46.760 INFO:teuthology.orchestra.run.smithi049.stdout:Setting up python3-s3transfer (0.3.3-1) ... 2024-02-22T22:29:46.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: cephadm 2024-02-22T22:29:45.004032+0000 mgr.smithi049.pzczis (mgr.14180) 314 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kaufaz 2024-02-22T22:29:46.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:46.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kaufaz 2024-02-22T22:29:46.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kaufaz 2024-02-22T22:29:46.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:46.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kaufaz 2024-02-22T22:29:46.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.kaufaz ... 2024-02-22T22:29:46.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:46.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:46.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:46.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:46.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:46.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:29:46.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:29:46.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:29:46.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:29:46.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:29:46.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kaufaz 2024-02-22T22:29:46.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:46.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kaufaz 2024-02-22T22:29:46.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kaufaz 2024-02-22T22:29:46.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:46.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kaufaz 2024-02-22T22:29:46.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.kaufaz ... 2024-02-22T22:29:46.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:46.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:46.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:46.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:46.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:46.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: cephadm 2024-02-22T22:29:45.004493+0000 mgr.smithi049.pzczis (mgr.14180) 315 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.kaufaz 2024-02-22T22:29:46.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: cephadm 2024-02-22T22:29:45.006468+0000 mgr.smithi049.pzczis (mgr.14180) 316 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.kaufaz on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kaufaz 2024-02-22T22:29:46.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:46.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kaufaz 2024-02-22T22:29:46.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kaufaz 2024-02-22T22:29:46.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:46.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kaufaz 2024-02-22T22:29:46.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.kaufaz ... 2024-02-22T22:29:46.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:46.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:46.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:46.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:46.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:46.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: cephadm 2024-02-22T22:29:45.010593+0000 mgr.smithi049.pzczis (mgr.14180) 317 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.udkavg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:29:46.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: cephadm 2024-02-22T22:29:45.012399+0000 mgr.smithi049.pzczis (mgr.14180) 318 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.lqjwxx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:29:46.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: cluster 2024-02-22T22:29:45.013234+0000 mgr.smithi049.pzczis (mgr.14180) 319 : cluster [DBG] pgmap v273: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.4 KiB/s rd, 198 B/s wr, 2 op/s 2024-02-22T22:29:46.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: cluster 2024-02-22T22:29:45.308602+0000 mon.smithi049 (mon.0) 712 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:29:46.809 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:46 smithi195 bash[18068]: audit 2024-02-22T22:29:46.129059+0000 mon.smithi049 (mon.0) 713 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:47.061 INFO:teuthology.orchestra.run.smithi049.stdout:Setting up python3-boto3 (1.9.253-1) ... 2024-02-22T22:29:47.700 DEBUG:teuthology.orchestra.run.smithi049:> 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-22T22:29:47.761 INFO:teuthology.orchestra.run.smithi049.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2024-02-22T22:29:48.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:48 smithi195 bash[18068]: cluster 2024-02-22T22:29:47.014521+0000 mgr.smithi049.pzczis (mgr.14180) 320 : cluster [DBG] pgmap v274: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.4 KiB/s rd, 198 B/s wr, 2 op/s 2024-02-22T22:29:48.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:48 smithi049 bash[14150]: cluster 2024-02-22T22:29:47.014521+0000 mgr.smithi049.pzczis (mgr.14180) 320 : cluster [DBG] pgmap v274: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.4 KiB/s rd, 198 B/s wr, 2 op/s 2024-02-22T22:29:50.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:50 smithi049 bash[14150]: cluster 2024-02-22T22:29:49.016051+0000 mgr.smithi049.pzczis (mgr.14180) 321 : cluster [DBG] pgmap v275: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.1 KiB/s rd, 173 B/s wr, 2 op/s 2024-02-22T22:29:50.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:50 smithi195 bash[18068]: cluster 2024-02-22T22:29:49.016051+0000 mgr.smithi049.pzczis (mgr.14180) 321 : cluster [DBG] pgmap v275: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.1 KiB/s rd, 173 B/s wr, 2 op/s 2024-02-22T22:29:51.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:51 smithi195 bash[18068]: audit 2024-02-22T22:29:50.535679+0000 mon.smithi049 (mon.0) 714 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:51.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:51 smithi195 bash[18068]: audit 2024-02-22T22:29:51.230938+0000 mon.smithi049 (mon.0) 715 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:51.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:51 smithi195 bash[18068]: audit 2024-02-22T22:29:51.233158+0000 mon.smithi049 (mon.0) 716 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:29:51.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:51 smithi195 bash[18068]: audit 2024-02-22T22:29:51.234788+0000 mon.smithi049 (mon.0) 717 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:29:51.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:51 smithi195 bash[18068]: audit 2024-02-22T22:29:51.512951+0000 mon.smithi049 (mon.0) 718 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:51.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:51 smithi195 bash[18068]: audit 2024-02-22T22:29:51.523926+0000 mon.smithi049 (mon.0) 719 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:29:51.858 INFO:teuthology.orchestra.run.smithi049.stderr:Inferring fsid 605df99c-d1d0-11ee-95c0-87774f69a715 2024-02-22T22:29:51.881 INFO:teuthology.orchestra.run.smithi049.stderr:Using recent ceph image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:44277403522cf37edeee63b04643fd6c6e9416f13c3731a771e3cc8e53b7d010 2024-02-22T22:29:51.908 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:51 smithi049 bash[14150]: audit 2024-02-22T22:29:50.535679+0000 mon.smithi049 (mon.0) 714 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:51.908 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:51 smithi049 bash[14150]: audit 2024-02-22T22:29:51.230938+0000 mon.smithi049 (mon.0) 715 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:51.909 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:51 smithi049 bash[14150]: audit 2024-02-22T22:29:51.233158+0000 mon.smithi049 (mon.0) 716 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:29:51.909 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:51 smithi049 bash[14150]: audit 2024-02-22T22:29:51.234788+0000 mon.smithi049 (mon.0) 717 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:29:51.909 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:51 smithi049 bash[14150]: audit 2024-02-22T22:29:51.512951+0000 mon.smithi049 (mon.0) 718 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:51.909 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:51 smithi049 bash[14150]: audit 2024-02-22T22:29:51.523926+0000 mon.smithi049 (mon.0) 719 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:29:52.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:52 smithi195 bash[18068]: cluster 2024-02-22T22:29:51.017054+0000 mgr.smithi049.pzczis (mgr.14180) 322 : cluster [DBG] pgmap v276: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.3 KiB/s rd, 173 B/s wr, 1 op/s 2024-02-22T22:29:52.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:52 smithi195 bash[18068]: cephadm 2024-02-22T22:29:51.241624+0000 mgr.smithi049.pzczis (mgr.14180) 323 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-02-22T22:29:52.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:52 smithi195 bash[18068]: cluster 2024-02-22T22:29:51.514212+0000 mgr.smithi049.pzczis (mgr.14180) 324 : cluster [DBG] pgmap v277: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 99 B/s wr, 0 op/s 2024-02-22T22:29:52.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:52 smithi195 bash[18068]: cluster 2024-02-22T22:29:51.532368+0000 mon.smithi049 (mon.0) 720 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:29:52.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:52 smithi195 bash[18068]: cluster 2024-02-22T22:29:51.532432+0000 mon.smithi049 (mon.0) 721 : cluster [INF] Cluster is now healthy 2024-02-22T22:29:52.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:52 smithi195 bash[18068]: audit 2024-02-22T22:29:51.546525+0000 mon.smithi049 (mon.0) 722 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:52.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:52 smithi195 bash[18068]: cephadm 2024-02-22T22:29:51.552391+0000 mgr.smithi049.pzczis (mgr.14180) 325 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.einrkx on smithi195 2024-02-22T22:29:52.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:52 smithi049 bash[14150]: cluster 2024-02-22T22:29:51.017054+0000 mgr.smithi049.pzczis (mgr.14180) 322 : cluster [DBG] pgmap v276: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.3 KiB/s rd, 173 B/s wr, 1 op/s 2024-02-22T22:29:52.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:52 smithi049 bash[14150]: cephadm 2024-02-22T22:29:51.241624+0000 mgr.smithi049.pzczis (mgr.14180) 323 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-02-22T22:29:52.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:52 smithi049 bash[14150]: cluster 2024-02-22T22:29:51.514212+0000 mgr.smithi049.pzczis (mgr.14180) 324 : cluster [DBG] pgmap v277: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 99 B/s wr, 0 op/s 2024-02-22T22:29:52.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:52 smithi049 bash[14150]: cluster 2024-02-22T22:29:51.532368+0000 mon.smithi049 (mon.0) 720 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:29:52.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:52 smithi049 bash[14150]: cluster 2024-02-22T22:29:51.532432+0000 mon.smithi049 (mon.0) 721 : cluster [INF] Cluster is now healthy 2024-02-22T22:29:52.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:52 smithi049 bash[14150]: audit 2024-02-22T22:29:51.546525+0000 mon.smithi049 (mon.0) 722 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:29:52.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:52 smithi049 bash[14150]: cephadm 2024-02-22T22:29:51.552391+0000 mgr.smithi049.pzczis (mgr.14180) 325 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.einrkx on smithi195 2024-02-22T22:29:54.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:54 smithi195 bash[18068]: cluster 2024-02-22T22:29:53.515520+0000 mgr.smithi049.pzczis (mgr.14180) 326 : cluster [DBG] pgmap v278: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.1 KiB/s rd, 1 op/s 2024-02-22T22:29:54.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:54 smithi049 bash[14150]: cluster 2024-02-22T22:29:53.515520+0000 mgr.smithi049.pzczis (mgr.14180) 326 : cluster [DBG] pgmap v278: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.1 KiB/s rd, 1 op/s 2024-02-22T22:29:55.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:55 smithi049 bash[14150]: audit 2024-02-22T22:29:55.345262+0000 mon.smithi049 (mon.0) 723 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.einrkx"}]: dispatch 2024-02-22T22:29:56.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:55 smithi195 bash[18068]: audit 2024-02-22T22:29:55.345262+0000 mon.smithi049 (mon.0) 723 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.einrkx"}]: dispatch 2024-02-22T22:29:56.458 INFO:teuthology.run_tasks:Running task python... 2024-02-22T22:29:56.469 INFO:tasks.python:Running python on role host.a host ubuntu@smithi049.front.sepia.ceph.com 2024-02-22T22:29:56.469 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-22T22:29:56.469 DEBUG:teuthology.orchestra.run.smithi049:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-02-22T22:29:56.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: cephadm 2024-02-22T22:29:55.344000+0000 mgr.smithi049.pzczis (mgr.14180) 327 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx 2024-02-22T22:29:56.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:56.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx 2024-02-22T22:29:56.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx 2024-02-22T22:29:56.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:56.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx 2024-02-22T22:29:56.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.einrkx ... 2024-02-22T22:29:56.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:56.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:56.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:56.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:56.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:56.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:29:56.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:29:56.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:29:56.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:29:56.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:29:56.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx 2024-02-22T22:29:56.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:56.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx 2024-02-22T22:29:56.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx 2024-02-22T22:29:56.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:56.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx 2024-02-22T22:29:56.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.einrkx ... 2024-02-22T22:29:56.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:56.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:56.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:56.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:56.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:56.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: cephadm 2024-02-22T22:29:55.344493+0000 mgr.smithi049.pzczis (mgr.14180) 328 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.einrkx 2024-02-22T22:29:56.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: cephadm 2024-02-22T22:29:55.347037+0000 mgr.smithi049.pzczis (mgr.14180) 329 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.einrkx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx 2024-02-22T22:29:56.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:56.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx 2024-02-22T22:29:56.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx 2024-02-22T22:29:56.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:29:56.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx 2024-02-22T22:29:56.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.einrkx ... 2024-02-22T22:29:56.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:56.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:56.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:56.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:56.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:56.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: cephadm 2024-02-22T22:29:55.351468+0000 mgr.smithi049.pzczis (mgr.14180) 330 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.eyaxys on smithi049 2024-02-22T22:29:56.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:56 smithi049 bash[14150]: cluster 2024-02-22T22:29:55.516246+0000 mgr.smithi049.pzczis (mgr.14180) 331 : cluster [DBG] pgmap v279: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.5 KiB/s rd, 1 op/s 2024-02-22T22:29:57.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: cephadm 2024-02-22T22:29:55.344000+0000 mgr.smithi049.pzczis (mgr.14180) 327 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx 2024-02-22T22:29:57.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:57.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx 2024-02-22T22:29:57.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx 2024-02-22T22:29:57.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:57.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx 2024-02-22T22:29:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.einrkx ... 2024-02-22T22:29:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:29:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:29:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:29:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:29:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:29:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx 2024-02-22T22:29:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx 2024-02-22T22:29:57.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx 2024-02-22T22:29:57.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:57.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx 2024-02-22T22:29:57.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.einrkx ... 2024-02-22T22:29:57.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:57.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:57.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:57.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:57.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:57.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: cephadm 2024-02-22T22:29:55.344493+0000 mgr.smithi049.pzczis (mgr.14180) 328 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.einrkx 2024-02-22T22:29:57.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: cephadm 2024-02-22T22:29:55.347037+0000 mgr.smithi049.pzczis (mgr.14180) 329 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.einrkx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx 2024-02-22T22:29:57.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:57.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx 2024-02-22T22:29:57.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx 2024-02-22T22:29:57.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:29:57.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx 2024-02-22T22:29:57.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.einrkx ... 2024-02-22T22:29:57.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:57.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:29:57.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:29:57.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:29:57.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:29:57.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: cephadm 2024-02-22T22:29:55.351468+0000 mgr.smithi049.pzczis (mgr.14180) 330 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.eyaxys on smithi049 2024-02-22T22:29:57.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:56 smithi195 bash[18068]: cluster 2024-02-22T22:29:55.516246+0000 mgr.smithi049.pzczis (mgr.14180) 331 : cluster [DBG] pgmap v279: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.5 KiB/s rd, 1 op/s 2024-02-22T22:29:58.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:58 smithi049 bash[14150]: cluster 2024-02-22T22:29:57.517497+0000 mgr.smithi049.pzczis (mgr.14180) 332 : cluster [DBG] pgmap v280: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.7 KiB/s rd, 1 op/s 2024-02-22T22:29:58.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:58 smithi049 bash[14150]: cluster 2024-02-22T22:29:57.570471+0000 mon.smithi049 (mon.0) 724 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-02-22T22:29:58.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:58 smithi049 bash[14150]: audit 2024-02-22T22:29:57.575108+0000 mon.smithi049 (mon.0) 725 : audit [INF] from='client.? 172.21.15.49:0/3694829012' entity='client.rgw.foorgw.smithi049.rkfzgw' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-02-22T22:29:59.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:58 smithi195 bash[18068]: cluster 2024-02-22T22:29:57.517497+0000 mgr.smithi049.pzczis (mgr.14180) 332 : cluster [DBG] pgmap v280: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.7 KiB/s rd, 1 op/s 2024-02-22T22:29:59.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:58 smithi195 bash[18068]: cluster 2024-02-22T22:29:57.570471+0000 mon.smithi049 (mon.0) 724 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-02-22T22:29:59.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:58 smithi195 bash[18068]: audit 2024-02-22T22:29:57.575108+0000 mon.smithi049 (mon.0) 725 : audit [INF] from='client.? 172.21.15.49:0/3694829012' entity='client.rgw.foorgw.smithi049.rkfzgw' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-02-22T22:29:59.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:59 smithi049 bash[14150]: audit 2024-02-22T22:29:58.577004+0000 mon.smithi049 (mon.0) 726 : audit [INF] from='client.? 172.21.15.49:0/3694829012' entity='client.rgw.foorgw.smithi049.rkfzgw' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-02-22T22:29:59.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:59 smithi049 bash[14150]: cluster 2024-02-22T22:29:58.578206+0000 mon.smithi049 (mon.0) 727 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-02-22T22:29:59.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:59 smithi049 bash[14150]: audit 2024-02-22T22:29:58.589816+0000 mon.smithi049 (mon.0) 728 : audit [INF] from='client.? 172.21.15.49:0/3694829012' entity='client.rgw.foorgw.smithi049.rkfzgw' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-22T22:29:59.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:29:59 smithi049 bash[14150]: audit 2024-02-22T22:29:59.122347+0000 mon.smithi049 (mon.0) 729 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.eyaxys"}]: dispatch 2024-02-22T22:30:00.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:59 smithi195 bash[18068]: audit 2024-02-22T22:29:58.577004+0000 mon.smithi049 (mon.0) 726 : audit [INF] from='client.? 172.21.15.49:0/3694829012' entity='client.rgw.foorgw.smithi049.rkfzgw' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-02-22T22:30:00.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:59 smithi195 bash[18068]: cluster 2024-02-22T22:29:58.578206+0000 mon.smithi049 (mon.0) 727 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-02-22T22:30:00.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:59 smithi195 bash[18068]: audit 2024-02-22T22:29:58.589816+0000 mon.smithi049 (mon.0) 728 : audit [INF] from='client.? 172.21.15.49:0/3694829012' entity='client.rgw.foorgw.smithi049.rkfzgw' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-22T22:30:00.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:29:59 smithi195 bash[18068]: audit 2024-02-22T22:29:59.122347+0000 mon.smithi049 (mon.0) 729 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.eyaxys"}]: dispatch 2024-02-22T22:30:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cephadm 2024-02-22T22:29:59.121221+0000 mgr.smithi049.pzczis (mgr.14180) 333 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys 2024-02-22T22:30:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:30:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys 2024-02-22T22:30:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys 2024-02-22T22:30:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:30:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys 2024-02-22T22:30:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.eyaxys ... 2024-02-22T22:30:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:30:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:30:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:30:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:30:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:30:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:30:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:30:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:30:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:30:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:30:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys 2024-02-22T22:30:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:30:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys 2024-02-22T22:30:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys 2024-02-22T22:30:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:30:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys 2024-02-22T22:30:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.eyaxys ... 2024-02-22T22:30:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:30:00.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:30:00.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:30:00.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:30:00.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:30:00.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cephadm 2024-02-22T22:29:59.121842+0000 mgr.smithi049.pzczis (mgr.14180) 334 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.eyaxys 2024-02-22T22:30:00.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cephadm 2024-02-22T22:29:59.123586+0000 mgr.smithi049.pzczis (mgr.14180) 335 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.eyaxys on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys 2024-02-22T22:30:00.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:30:00.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys 2024-02-22T22:30:00.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys 2024-02-22T22:30:00.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:30:00.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys 2024-02-22T22:30:00.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.eyaxys ... 2024-02-22T22:30:00.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:30:00.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:30:00.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:30:00.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:30:00.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:30:00.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cephadm 2024-02-22T22:29:59.126419+0000 mgr.smithi049.pzczis (mgr.14180) 336 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.idmrxu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:30:00.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cephadm 2024-02-22T22:29:59.129183+0000 mgr.smithi049.pzczis (mgr.14180) 337 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:30:00.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:29:59.130410+0000 mgr.smithi049.pzczis (mgr.14180) 338 : cluster [DBG] pgmap v283: 193 pgs: 32 unknown, 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.0 KiB/s rd, 134 B/s wr, 3 op/s 2024-02-22T22:30:00.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:29:59.582560+0000 mon.smithi049 (mon.0) 730 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:30:00.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: audit 2024-02-22T22:29:59.596493+0000 mon.smithi049 (mon.0) 731 : audit [INF] from='client.? 172.21.15.49:0/3694829012' entity='client.rgw.foorgw.smithi049.rkfzgw' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-22T22:30:00.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:29:59.596594+0000 mon.smithi049 (mon.0) 732 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-02-22T22:30:00.947 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098010+0000 mon.smithi049 (mon.0) 733 : cluster [WRN] Health detail: HEALTH_WARN Failed to place 4 daemon(s) 2024-02-22T22:30:00.947 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098056+0000 mon.smithi049 (mon.0) 734 : cluster [WRN] [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 4 daemon(s) 2024-02-22T22:30:00.947 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098074+0000 mon.smithi049 (mon.0) 735 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi195.einrkx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx 2024-02-22T22:30:00.947 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098086+0000 mon.smithi049 (mon.0) 736 : cluster [WRN] /usr/bin/docker: stdout 2024-02-22T22:30:00.947 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098098+0000 mon.smithi049 (mon.0) 737 : cluster [WRN] /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx 2024-02-22T22:30:00.947 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098121+0000 mon.smithi049 (mon.0) 738 : cluster [WRN] Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx 2024-02-22T22:30:00.947 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098137+0000 mon.smithi049 (mon.0) 739 : cluster [WRN] /usr/bin/docker: stdout 2024-02-22T22:30:00.947 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098150+0000 mon.smithi049 (mon.0) 740 : cluster [WRN] /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx 2024-02-22T22:30:00.947 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098166+0000 mon.smithi049 (mon.0) 741 : cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi195.einrkx ... 2024-02-22T22:30:00.947 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098180+0000 mon.smithi049 (mon.0) 742 : 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=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:30:00.947 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098189+0000 mon.smithi049 (mon.0) 743 : cluster [WRN] stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:30:00.947 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098202+0000 mon.smithi049 (mon.0) 744 : 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-22T22:30:00.947 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098221+0000 mon.smithi049 (mon.0) 745 : cluster [WRN] stat: stderr See 'docker run --help'. 2024-02-22T22:30:00.947 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098242+0000 mon.smithi049 (mon.0) 746 : 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=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:30:00.947 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098269+0000 mon.smithi049 (mon.0) 747 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi049.eyaxys on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys 2024-02-22T22:30:00.948 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098286+0000 mon.smithi049 (mon.0) 748 : cluster [WRN] /usr/bin/docker: stdout 2024-02-22T22:30:00.948 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098300+0000 mon.smithi049 (mon.0) 749 : cluster [WRN] /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys 2024-02-22T22:30:00.948 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098314+0000 mon.smithi049 (mon.0) 750 : cluster [WRN] Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys 2024-02-22T22:30:00.948 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098328+0000 mon.smithi049 (mon.0) 751 : cluster [WRN] /usr/bin/docker: stdout 2024-02-22T22:30:00.948 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098346+0000 mon.smithi049 (mon.0) 752 : cluster [WRN] /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys 2024-02-22T22:30:00.948 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098358+0000 mon.smithi049 (mon.0) 753 : cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi049.eyaxys ... 2024-02-22T22:30:00.948 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098374+0000 mon.smithi049 (mon.0) 754 : 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=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:30:00.948 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098390+0000 mon.smithi049 (mon.0) 755 : cluster [WRN] stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:30:00.948 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098403+0000 mon.smithi049 (mon.0) 756 : 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-22T22:30:00.948 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098418+0000 mon.smithi049 (mon.0) 757 : cluster [WRN] stat: stderr See 'docker run --help'. 2024-02-22T22:30:00.948 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098432+0000 mon.smithi049 (mon.0) 758 : 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=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:30:00.948 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098444+0000 mon.smithi049 (mon.0) 759 : cluster [WRN] Failed while placing keepalived.nfs.foo.smithi049.idmrxu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:30:00.948 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.098461+0000 mon.smithi049 (mon.0) 760 : cluster [WRN] Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:30:01.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cephadm 2024-02-22T22:29:59.121221+0000 mgr.smithi049.pzczis (mgr.14180) 333 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys 2024-02-22T22:30:01.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:30:01.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys 2024-02-22T22:30:01.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys 2024-02-22T22:30:01.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:30:01.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys 2024-02-22T22:30:01.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.eyaxys ... 2024-02-22T22:30:01.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:30:01.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:30:01.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:30:01.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:30:01.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:30:01.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:30:01.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:30:01.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:30:01.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:30:01.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:30:01.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys 2024-02-22T22:30:01.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:30:01.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys 2024-02-22T22:30:01.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys 2024-02-22T22:30:01.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:30:01.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys 2024-02-22T22:30:01.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.eyaxys ... 2024-02-22T22:30:01.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:30:01.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:30:01.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:30:01.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:30:01.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:30:01.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cephadm 2024-02-22T22:29:59.121842+0000 mgr.smithi049.pzczis (mgr.14180) 334 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.eyaxys 2024-02-22T22:30:01.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cephadm 2024-02-22T22:29:59.123586+0000 mgr.smithi049.pzczis (mgr.14180) 335 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.eyaxys on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys 2024-02-22T22:30:01.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:30:01.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys 2024-02-22T22:30:01.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys 2024-02-22T22:30:01.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:30:01.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys 2024-02-22T22:30:01.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.eyaxys ... 2024-02-22T22:30:01.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:30:01.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:30:01.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:30:01.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:30:01.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:30:01.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cephadm 2024-02-22T22:29:59.126419+0000 mgr.smithi049.pzczis (mgr.14180) 336 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.idmrxu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:30:01.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cephadm 2024-02-22T22:29:59.129183+0000 mgr.smithi049.pzczis (mgr.14180) 337 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:30:01.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:29:59.130410+0000 mgr.smithi049.pzczis (mgr.14180) 338 : cluster [DBG] pgmap v283: 193 pgs: 32 unknown, 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.0 KiB/s rd, 134 B/s wr, 3 op/s 2024-02-22T22:30:01.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:29:59.582560+0000 mon.smithi049 (mon.0) 730 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:30:01.059 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: audit 2024-02-22T22:29:59.596493+0000 mon.smithi049 (mon.0) 731 : audit [INF] from='client.? 172.21.15.49:0/3694829012' entity='client.rgw.foorgw.smithi049.rkfzgw' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-22T22:30:01.059 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:29:59.596594+0000 mon.smithi049 (mon.0) 732 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-02-22T22:30:01.059 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098010+0000 mon.smithi049 (mon.0) 733 : cluster [WRN] Health detail: HEALTH_WARN Failed to place 4 daemon(s) 2024-02-22T22:30:01.059 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098056+0000 mon.smithi049 (mon.0) 734 : cluster [WRN] [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 4 daemon(s) 2024-02-22T22:30:01.059 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098074+0000 mon.smithi049 (mon.0) 735 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi195.einrkx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx 2024-02-22T22:30:01.059 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098086+0000 mon.smithi049 (mon.0) 736 : cluster [WRN] /usr/bin/docker: stdout 2024-02-22T22:30:01.059 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098098+0000 mon.smithi049 (mon.0) 737 : cluster [WRN] /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx 2024-02-22T22:30:01.059 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098121+0000 mon.smithi049 (mon.0) 738 : cluster [WRN] Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx 2024-02-22T22:30:01.059 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098137+0000 mon.smithi049 (mon.0) 739 : cluster [WRN] /usr/bin/docker: stdout 2024-02-22T22:30:01.059 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098150+0000 mon.smithi049 (mon.0) 740 : cluster [WRN] /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx 2024-02-22T22:30:01.059 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098166+0000 mon.smithi049 (mon.0) 741 : cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi195.einrkx ... 2024-02-22T22:30:01.059 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098180+0000 mon.smithi049 (mon.0) 742 : 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=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:30:01.059 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098189+0000 mon.smithi049 (mon.0) 743 : cluster [WRN] stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:30:01.059 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098202+0000 mon.smithi049 (mon.0) 744 : 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-22T22:30:01.059 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098221+0000 mon.smithi049 (mon.0) 745 : cluster [WRN] stat: stderr See 'docker run --help'. 2024-02-22T22:30:01.060 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098242+0000 mon.smithi049 (mon.0) 746 : 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=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:30:01.060 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098269+0000 mon.smithi049 (mon.0) 747 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi049.eyaxys on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys 2024-02-22T22:30:01.060 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098286+0000 mon.smithi049 (mon.0) 748 : cluster [WRN] /usr/bin/docker: stdout 2024-02-22T22:30:01.060 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098300+0000 mon.smithi049 (mon.0) 749 : cluster [WRN] /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys 2024-02-22T22:30:01.060 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098314+0000 mon.smithi049 (mon.0) 750 : cluster [WRN] Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys 2024-02-22T22:30:01.060 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098328+0000 mon.smithi049 (mon.0) 751 : cluster [WRN] /usr/bin/docker: stdout 2024-02-22T22:30:01.060 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098346+0000 mon.smithi049 (mon.0) 752 : cluster [WRN] /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys 2024-02-22T22:30:01.060 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098358+0000 mon.smithi049 (mon.0) 753 : cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi049.eyaxys ... 2024-02-22T22:30:01.060 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098374+0000 mon.smithi049 (mon.0) 754 : 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=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:30:01.060 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098390+0000 mon.smithi049 (mon.0) 755 : cluster [WRN] stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:30:01.060 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098403+0000 mon.smithi049 (mon.0) 756 : 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-22T22:30:01.060 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098418+0000 mon.smithi049 (mon.0) 757 : cluster [WRN] stat: stderr See 'docker run --help'. 2024-02-22T22:30:01.060 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098432+0000 mon.smithi049 (mon.0) 758 : 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=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:30:01.060 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098444+0000 mon.smithi049 (mon.0) 759 : cluster [WRN] Failed while placing keepalived.nfs.foo.smithi049.idmrxu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:30:01.061 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.098461+0000 mon.smithi049 (mon.0) 760 : cluster [WRN] Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:30:01.693 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-02-22T22:30:01.703 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi049.front.sepia.ceph.com 2024-02-22T22:30:01.703 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- bash -c 'ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser' 2024-02-22T22:30:01.905 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:01 smithi049 bash[14150]: cluster 2024-02-22T22:30:00.609931+0000 mon.smithi049 (mon.0) 761 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-02-22T22:30:01.905 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:01 smithi049 bash[14150]: audit 2024-02-22T22:30:00.610428+0000 mon.smithi195 (mon.1) 25 : audit [INF] from='client.? 172.21.15.49:0/3812184746' entity='client.rgw.foorgw.smithi049.rkfzgw' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-02-22T22:30:01.905 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:01 smithi049 bash[14150]: audit 2024-02-22T22:30:00.615138+0000 mon.smithi049 (mon.0) 762 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi049.rkfzgw' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-02-22T22:30:01.905 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:01 smithi049 bash[14150]: cluster 2024-02-22T22:30:01.131712+0000 mgr.smithi049.pzczis (mgr.14180) 339 : cluster [DBG] pgmap v286: 225 pgs: 1 creating+peering, 43 unknown, 181 active+clean; 6.1 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.6 KiB/s rd, 1.1 KiB/s wr, 6 op/s 2024-02-22T22:30:01.905 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:01 smithi049 bash[14150]: audit 2024-02-22T22:30:01.145284+0000 mon.smithi049 (mon.0) 763 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:30:02.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:01 smithi195 bash[18068]: cluster 2024-02-22T22:30:00.609931+0000 mon.smithi049 (mon.0) 761 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-02-22T22:30:02.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:01 smithi195 bash[18068]: audit 2024-02-22T22:30:00.610428+0000 mon.smithi195 (mon.1) 25 : audit [INF] from='client.? 172.21.15.49:0/3812184746' entity='client.rgw.foorgw.smithi049.rkfzgw' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-02-22T22:30:02.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:01 smithi195 bash[18068]: audit 2024-02-22T22:30:00.615138+0000 mon.smithi049 (mon.0) 762 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi049.rkfzgw' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-02-22T22:30:02.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:01 smithi195 bash[18068]: cluster 2024-02-22T22:30:01.131712+0000 mgr.smithi049.pzczis (mgr.14180) 339 : cluster [DBG] pgmap v286: 225 pgs: 1 creating+peering, 43 unknown, 181 active+clean; 6.1 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.6 KiB/s rd, 1.1 KiB/s wr, 6 op/s 2024-02-22T22:30:02.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:01 smithi195 bash[18068]: audit 2024-02-22T22:30:01.145284+0000 mon.smithi049 (mon.0) 763 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:30:02.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:02 smithi049 bash[14150]: audit 2024-02-22T22:30:01.620097+0000 mon.smithi049 (mon.0) 764 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi049.rkfzgw' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-02-22T22:30:02.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:02 smithi049 bash[14150]: cluster 2024-02-22T22:30:01.620340+0000 mon.smithi049 (mon.0) 765 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-02-22T22:30:03.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:02 smithi195 bash[18068]: audit 2024-02-22T22:30:01.620097+0000 mon.smithi049 (mon.0) 764 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi049.rkfzgw' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-02-22T22:30:03.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:02 smithi195 bash[18068]: cluster 2024-02-22T22:30:01.620340+0000 mon.smithi049 (mon.0) 765 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-02-22T22:30:03.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:03 smithi049 bash[14150]: cluster 2024-02-22T22:30:02.624113+0000 mon.smithi049 (mon.0) 766 : cluster [DBG] osdmap e60: 8 total, 8 up, 8 in 2024-02-22T22:30:03.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:03 smithi049 bash[14150]: cluster 2024-02-22T22:30:03.132732+0000 mgr.smithi049.pzczis (mgr.14180) 340 : cluster [DBG] pgmap v289: 225 pgs: 1 creating+peering, 19 unknown, 205 active+clean; 6.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.2 KiB/s rd, 1.5 KiB/s wr, 9 op/s 2024-02-22T22:30:04.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:03 smithi195 bash[18068]: cluster 2024-02-22T22:30:02.624113+0000 mon.smithi049 (mon.0) 766 : cluster [DBG] osdmap e60: 8 total, 8 up, 8 in 2024-02-22T22:30:04.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:03 smithi195 bash[18068]: cluster 2024-02-22T22:30:03.132732+0000 mgr.smithi049.pzczis (mgr.14180) 340 : cluster [DBG] pgmap v289: 225 pgs: 1 creating+peering, 19 unknown, 205 active+clean; 6.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.2 KiB/s rd, 1.5 KiB/s wr, 9 op/s 2024-02-22T22:30:05.327 INFO:teuthology.orchestra.run.smithi049.stdout:{ 2024-02-22T22:30:05.327 INFO:teuthology.orchestra.run.smithi049.stdout: "bind": "/foouser", 2024-02-22T22:30:05.327 INFO:teuthology.orchestra.run.smithi049.stdout: "path": "/", 2024-02-22T22:30:05.327 INFO:teuthology.orchestra.run.smithi049.stdout: "cluster": "foo", 2024-02-22T22:30:05.327 INFO:teuthology.orchestra.run.smithi049.stdout: "mode": "RW", 2024-02-22T22:30:05.327 INFO:teuthology.orchestra.run.smithi049.stdout: "squash": "none" 2024-02-22T22:30:05.327 INFO:teuthology.orchestra.run.smithi049.stdout:} 2024-02-22T22:30:06.072 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-02-22T22:30:06.083 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2024-02-22T22:30:06.083 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:30:06.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:06 smithi049 bash[14150]: audit 2024-02-22T22:30:05.106551+0000 mgr.smithi049.pzczis (mgr.14180) 341 : audit [DBG] from='client.14624 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:30:06.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:06 smithi049 bash[14150]: cluster 2024-02-22T22:30:05.133656+0000 mgr.smithi049.pzczis (mgr.14180) 342 : cluster [DBG] pgmap v290: 225 pgs: 1 creating+peering, 14 unknown, 210 active+clean; 6.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.6 KiB/s rd, 1.1 KiB/s wr, 7 op/s 2024-02-22T22:30:06.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:06 smithi195 bash[18068]: audit 2024-02-22T22:30:05.106551+0000 mgr.smithi049.pzczis (mgr.14180) 341 : audit [DBG] from='client.14624 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-02-22T22:30:06.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:06 smithi195 bash[18068]: cluster 2024-02-22T22:30:05.133656+0000 mgr.smithi049.pzczis (mgr.14180) 342 : cluster [DBG] pgmap v290: 225 pgs: 1 creating+peering, 14 unknown, 210 active+clean; 6.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.6 KiB/s rd, 1.1 KiB/s wr, 7 op/s 2024-02-22T22:30:08.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:08 smithi049 bash[14150]: cluster 2024-02-22T22:30:07.135449+0000 mgr.smithi049.pzczis (mgr.14180) 343 : cluster [DBG] pgmap v291: 225 pgs: 225 active+clean; 7.1 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.4 KiB/s rd, 941 B/s wr, 8 op/s 2024-02-22T22:30:08.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:08 smithi049 bash[14150]: audit 2024-02-22T22:30:07.448250+0000 mon.smithi049 (mon.0) 767 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.13", "id": [4, 6]}]: dispatch 2024-02-22T22:30:08.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:08 smithi049 bash[14150]: audit 2024-02-22T22:30:07.448763+0000 mon.smithi049 (mon.0) 768 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.1", "id": [5, 3]}]: dispatch 2024-02-22T22:30:08.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:08 smithi049 bash[14150]: audit 2024-02-22T22:30:07.647596+0000 mon.smithi049 (mon.0) 769 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:30:08.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:08 smithi195 bash[18068]: cluster 2024-02-22T22:30:07.135449+0000 mgr.smithi049.pzczis (mgr.14180) 343 : cluster [DBG] pgmap v291: 225 pgs: 225 active+clean; 7.1 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.4 KiB/s rd, 941 B/s wr, 8 op/s 2024-02-22T22:30:08.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:08 smithi195 bash[18068]: audit 2024-02-22T22:30:07.448250+0000 mon.smithi049 (mon.0) 767 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.13", "id": [4, 6]}]: dispatch 2024-02-22T22:30:08.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:08 smithi195 bash[18068]: audit 2024-02-22T22:30:07.448763+0000 mon.smithi049 (mon.0) 768 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.1", "id": [5, 3]}]: dispatch 2024-02-22T22:30:08.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:08 smithi195 bash[18068]: audit 2024-02-22T22:30:07.647596+0000 mon.smithi049 (mon.0) 769 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:30:09.137 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:30:09.137 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:29:51.216019Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:29:50.525546Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:29:51.216524Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:45.012302Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lqjwxx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:55.346791Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.einrkx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\nDeploy daemon haproxy.nfs.foo.smithi195.einrkx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.123382Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.eyaxys on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\nDeploy daemon haproxy.nfs.foo.smithi049.eyaxys ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.126271Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.idmrxu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:29:50.525841Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:29:50.525997Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:29:51.218538Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:29:50.526133Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:29:50.526264Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:29:51.217022Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:29:50.526845Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:30:09.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:09 smithi049 bash[14150]: audit 2024-02-22T22:30:08.207213+0000 mon.smithi049 (mon.0) 770 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.13", "id": [4, 6]}]': finished 2024-02-22T22:30:09.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:09 smithi049 bash[14150]: audit 2024-02-22T22:30:08.207331+0000 mon.smithi049 (mon.0) 771 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.1", "id": [5, 3]}]': finished 2024-02-22T22:30:09.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:09 smithi049 bash[14150]: cluster 2024-02-22T22:30:08.207433+0000 mon.smithi049 (mon.0) 772 : cluster [DBG] osdmap e61: 8 total, 8 up, 8 in 2024-02-22T22:30:09.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:09 smithi195 bash[18068]: audit 2024-02-22T22:30:08.207213+0000 mon.smithi049 (mon.0) 770 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.13", "id": [4, 6]}]': finished 2024-02-22T22:30:09.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:09 smithi195 bash[18068]: audit 2024-02-22T22:30:08.207331+0000 mon.smithi049 (mon.0) 771 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.1", "id": [5, 3]}]': finished 2024-02-22T22:30:09.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:09 smithi195 bash[18068]: cluster 2024-02-22T22:30:08.207433+0000 mon.smithi049 (mon.0) 772 : cluster [DBG] osdmap e61: 8 total, 8 up, 8 in 2024-02-22T22:30:09.878 INFO:tasks.cephadm:nfs.foo has 1/1 2024-02-22T22:30:09.879 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-02-22T22:30:09.892 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2024-02-22T22:30:09.893 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:30:10.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:10 smithi049 bash[14150]: audit 2024-02-22T22:30:09.127338+0000 mgr.smithi049.pzczis (mgr.14180) 344 : audit [DBG] from='client.14648 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:30:10.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:10 smithi049 bash[14150]: cluster 2024-02-22T22:30:09.136437+0000 mgr.smithi049.pzczis (mgr.14180) 345 : cluster [DBG] pgmap v293: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 7.4 KiB/s rd, 953 B/s wr, 14 op/s 2024-02-22T22:30:10.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:10 smithi049 bash[14150]: cluster 2024-02-22T22:30:09.217419+0000 mon.smithi049 (mon.0) 773 : cluster [DBG] osdmap e62: 8 total, 8 up, 8 in 2024-02-22T22:30:10.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:10 smithi195 bash[18068]: audit 2024-02-22T22:30:09.127338+0000 mgr.smithi049.pzczis (mgr.14180) 344 : audit [DBG] from='client.14648 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:30:10.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:10 smithi195 bash[18068]: cluster 2024-02-22T22:30:09.136437+0000 mgr.smithi049.pzczis (mgr.14180) 345 : cluster [DBG] pgmap v293: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 7.4 KiB/s rd, 953 B/s wr, 14 op/s 2024-02-22T22:30:10.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:10 smithi195 bash[18068]: cluster 2024-02-22T22:30:09.217419+0000 mon.smithi049 (mon.0) 773 : cluster [DBG] osdmap e62: 8 total, 8 up, 8 in 2024-02-22T22:30:12.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:12 smithi195 bash[18068]: cluster 2024-02-22T22:30:11.138419+0000 mgr.smithi049.pzczis (mgr.14180) 346 : cluster [DBG] pgmap v295: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 11 KiB/s rd, 639 B/s wr, 17 op/s 2024-02-22T22:30:12.607 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:12 smithi049 bash[14150]: cluster 2024-02-22T22:30:11.138419+0000 mgr.smithi049.pzczis (mgr.14180) 346 : cluster [DBG] pgmap v295: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 11 KiB/s rd, 639 B/s wr, 17 op/s 2024-02-22T22:30:12.990 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:30:12.990 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:29:51.216019Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:29:50.525546Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:29:51.216524Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:45.012302Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lqjwxx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:55.346791Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.einrkx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\nDeploy daemon haproxy.nfs.foo.smithi195.einrkx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.123382Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.eyaxys on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\nDeploy daemon haproxy.nfs.foo.smithi049.eyaxys ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.126271Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.idmrxu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:29:50.525841Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:29:50.525997Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:29:51.218538Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:29:50.526133Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:29:50.526264Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:29:51.217022Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:29:50.526845Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:30:13.660 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:30:14.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:14 smithi195 bash[18068]: audit 2024-02-22T22:30:12.981245+0000 mgr.smithi049.pzczis (mgr.14180) 347 : audit [DBG] from='client.14652 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:30:14.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:14 smithi195 bash[18068]: cluster 2024-02-22T22:30:13.140217+0000 mgr.smithi049.pzczis (mgr.14180) 348 : cluster [DBG] pgmap v296: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 12 KiB/s rd, 639 B/s wr, 17 op/s 2024-02-22T22:30:14.661 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:30:14.674 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:14 smithi049 bash[14150]: audit 2024-02-22T22:30:12.981245+0000 mgr.smithi049.pzczis (mgr.14180) 347 : audit [DBG] from='client.14652 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:30:14.674 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:14 smithi049 bash[14150]: cluster 2024-02-22T22:30:13.140217+0000 mgr.smithi049.pzczis (mgr.14180) 348 : cluster [DBG] pgmap v296: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 12 KiB/s rd, 639 B/s wr, 17 op/s 2024-02-22T22:30:16.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:16 smithi049 bash[14150]: cluster 2024-02-22T22:30:15.141450+0000 mgr.smithi049.pzczis (mgr.14180) 349 : cluster [DBG] pgmap v297: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.0 KiB/s rd, 255 B/s wr, 12 op/s 2024-02-22T22:30:16.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:16 smithi195 bash[18068]: cluster 2024-02-22T22:30:15.141450+0000 mgr.smithi049.pzczis (mgr.14180) 349 : cluster [DBG] pgmap v297: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.0 KiB/s rd, 255 B/s wr, 12 op/s 2024-02-22T22:30:17.795 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:30:17.795 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:29:51.216019Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:29:50.525546Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:29:51.216524Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:45.012302Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lqjwxx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:55.346791Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.einrkx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\nDeploy daemon haproxy.nfs.foo.smithi195.einrkx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.123382Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.eyaxys on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\nDeploy daemon haproxy.nfs.foo.smithi049.eyaxys ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.126271Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.idmrxu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:29:50.525841Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:29:50.525997Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:29:51.218538Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:29:50.526133Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:29:50.526264Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:29:51.217022Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:29:50.526845Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:30:18.460 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:30:18.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:18 smithi195 bash[18068]: cluster 2024-02-22T22:30:17.143238+0000 mgr.smithi049.pzczis (mgr.14180) 350 : cluster [DBG] pgmap v298: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.3 KiB/s rd, 114 B/s wr, 5 op/s 2024-02-22T22:30:18.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:18 smithi049 bash[14150]: cluster 2024-02-22T22:30:17.143238+0000 mgr.smithi049.pzczis (mgr.14180) 350 : cluster [DBG] pgmap v298: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.3 KiB/s rd, 114 B/s wr, 5 op/s 2024-02-22T22:30:19.461 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:30:19.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:19 smithi195 bash[18068]: audit 2024-02-22T22:30:17.787172+0000 mgr.smithi049.pzczis (mgr.14180) 351 : audit [DBG] from='client.14656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:30:19.663 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:19 smithi049 bash[14150]: audit 2024-02-22T22:30:17.787172+0000 mgr.smithi049.pzczis (mgr.14180) 351 : audit [DBG] from='client.14656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:30:20.545 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:20 smithi049 bash[14150]: cluster 2024-02-22T22:30:19.144885+0000 mgr.smithi049.pzczis (mgr.14180) 352 : cluster [DBG] pgmap v299: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.8 KiB/s rd, 102 B/s wr, 5 op/s 2024-02-22T22:30:20.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:20 smithi195 bash[18068]: cluster 2024-02-22T22:30:19.144885+0000 mgr.smithi049.pzczis (mgr.14180) 352 : cluster [DBG] pgmap v299: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.8 KiB/s rd, 102 B/s wr, 5 op/s 2024-02-22T22:30:22.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:22 smithi195 bash[18068]: cluster 2024-02-22T22:30:21.146911+0000 mgr.smithi049.pzczis (mgr.14180) 353 : cluster [DBG] pgmap v300: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.2 KiB/s rd, 85 B/s wr, 4 op/s 2024-02-22T22:30:22.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:22 smithi049 bash[14150]: cluster 2024-02-22T22:30:21.146911+0000 mgr.smithi049.pzczis (mgr.14180) 353 : cluster [DBG] pgmap v300: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.2 KiB/s rd, 85 B/s wr, 4 op/s 2024-02-22T22:30:22.740 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:30:22.740 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:29:51.216019Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:29:50.525546Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:29:51.216524Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:45.012302Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lqjwxx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:55.346791Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.einrkx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\nDeploy daemon haproxy.nfs.foo.smithi195.einrkx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.123382Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.eyaxys on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\nDeploy daemon haproxy.nfs.foo.smithi049.eyaxys ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.126271Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.idmrxu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:29:50.525841Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:29:50.525997Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:29:51.218538Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:29:50.526133Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:29:50.526264Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:29:51.217022Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:29:50.526845Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:30:23.467 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:30:24.468 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:30:24.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:24 smithi195 bash[18068]: audit 2024-02-22T22:30:22.731309+0000 mgr.smithi049.pzczis (mgr.14180) 354 : audit [DBG] from='client.14660 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:30:24.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:24 smithi195 bash[18068]: cluster 2024-02-22T22:30:23.148567+0000 mgr.smithi049.pzczis (mgr.14180) 355 : cluster [DBG] pgmap v301: 225 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-22T22:30:24.672 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:24 smithi049 bash[14150]: audit 2024-02-22T22:30:22.731309+0000 mgr.smithi049.pzczis (mgr.14180) 354 : audit [DBG] from='client.14660 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:30:24.672 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:24 smithi049 bash[14150]: cluster 2024-02-22T22:30:23.148567+0000 mgr.smithi049.pzczis (mgr.14180) 355 : cluster [DBG] pgmap v301: 225 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-22T22:30:26.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:26 smithi195 bash[18068]: cluster 2024-02-22T22:30:25.149871+0000 mgr.smithi049.pzczis (mgr.14180) 356 : 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-22T22:30:26.567 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:26 smithi049 bash[14150]: cluster 2024-02-22T22:30:25.149871+0000 mgr.smithi049.pzczis (mgr.14180) 356 : 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-22T22:30:27.470 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:30:27.470 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:29:51.216019Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:29:50.525546Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:29:51.216524Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:45.012302Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lqjwxx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:55.346791Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.einrkx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\nDeploy daemon haproxy.nfs.foo.smithi195.einrkx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.123382Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.eyaxys on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\nDeploy daemon haproxy.nfs.foo.smithi049.eyaxys ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.126271Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.idmrxu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:29:50.525841Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:29:50.525997Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:29:51.218538Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:29:50.526133Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:29:50.526264Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:29:51.217022Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:29:50.526845Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:30:28.230 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:30:28.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:28 smithi195 bash[18068]: cluster 2024-02-22T22:30:27.150912+0000 mgr.smithi049.pzczis (mgr.14180) 357 : 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, 170 B/s wr, 0 op/s 2024-02-22T22:30:28.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:28 smithi195 bash[18068]: audit 2024-02-22T22:30:27.461190+0000 mgr.smithi049.pzczis (mgr.14180) 358 : audit [DBG] from='client.14664 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:30:28.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:28 smithi049 bash[14150]: cluster 2024-02-22T22:30:27.150912+0000 mgr.smithi049.pzczis (mgr.14180) 357 : 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, 170 B/s wr, 0 op/s 2024-02-22T22:30:28.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:28 smithi049 bash[14150]: audit 2024-02-22T22:30:27.461190+0000 mgr.smithi049.pzczis (mgr.14180) 358 : audit [DBG] from='client.14664 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:30:29.232 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:30:30.544 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:30 smithi049 bash[14150]: cluster 2024-02-22T22:30:29.152327+0000 mgr.smithi049.pzczis (mgr.14180) 359 : cluster [DBG] pgmap v304: 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-22T22:30:30.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:30 smithi195 bash[18068]: cluster 2024-02-22T22:30:29.152327+0000 mgr.smithi049.pzczis (mgr.14180) 359 : cluster [DBG] pgmap v304: 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-22T22:30:32.286 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:30:32.287 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:29:51.216019Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:29:50.525546Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:29:51.216524Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:45.012302Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lqjwxx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:55.346791Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.einrkx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\nDeploy daemon haproxy.nfs.foo.smithi195.einrkx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.123382Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.eyaxys on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\nDeploy daemon haproxy.nfs.foo.smithi049.eyaxys ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.126271Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.idmrxu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:29:50.525841Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:29:50.525997Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:29:51.218538Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:29:50.526133Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:29:50.526264Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:29:51.217022Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:29:50.526845Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:30:32.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:32 smithi195 bash[18068]: cluster 2024-02-22T22:30:31.154250+0000 mgr.smithi049.pzczis (mgr.14180) 360 : cluster [DBG] pgmap v305: 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-22T22:30:32.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:32 smithi049 bash[14150]: cluster 2024-02-22T22:30:31.154250+0000 mgr.smithi049.pzczis (mgr.14180) 360 : cluster [DBG] pgmap v305: 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-22T22:30:32.997 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:30:33.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:33 smithi195 bash[18068]: audit 2024-02-22T22:30:32.275510+0000 mgr.smithi049.pzczis (mgr.14180) 361 : audit [DBG] from='client.14668 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:30:33.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:33 smithi049 bash[14150]: audit 2024-02-22T22:30:32.275510+0000 mgr.smithi049.pzczis (mgr.14180) 361 : audit [DBG] from='client.14668 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:30:33.998 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:30:34.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:34 smithi195 bash[18068]: cluster 2024-02-22T22:30:33.155866+0000 mgr.smithi049.pzczis (mgr.14180) 362 : cluster [DBG] pgmap v306: 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-22T22:30:34.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:34 smithi049 bash[14150]: cluster 2024-02-22T22:30:33.155866+0000 mgr.smithi049.pzczis (mgr.14180) 362 : cluster [DBG] pgmap v306: 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-22T22:30:36.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:36 smithi049 bash[14150]: cluster 2024-02-22T22:30:35.156942+0000 mgr.smithi049.pzczis (mgr.14180) 363 : cluster [DBG] pgmap v307: 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-22T22:30:36.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:36 smithi195 bash[18068]: cluster 2024-02-22T22:30:35.156942+0000 mgr.smithi049.pzczis (mgr.14180) 363 : cluster [DBG] pgmap v307: 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-22T22:30:37.202 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:30:37.202 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:29:51.216019Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:29:50.525546Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:29:51.216524Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:45.012302Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lqjwxx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:55.346791Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.einrkx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\nDeploy daemon haproxy.nfs.foo.smithi195.einrkx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.123382Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.eyaxys on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\nDeploy daemon haproxy.nfs.foo.smithi049.eyaxys ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.126271Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.idmrxu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:29:50.525841Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:29:50.525997Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:29:51.218538Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:29:50.526133Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:29:50.526264Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:29:51.217022Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:29:50.526845Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:30:38.015 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:30:38.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:38 smithi195 bash[18068]: cluster 2024-02-22T22:30:37.158077+0000 mgr.smithi049.pzczis (mgr.14180) 364 : 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, 170 B/s wr, 0 op/s 2024-02-22T22:30:38.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:38 smithi195 bash[18068]: audit 2024-02-22T22:30:37.197261+0000 mgr.smithi049.pzczis (mgr.14180) 365 : audit [DBG] from='client.14672 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:30:38.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:38 smithi049 bash[14150]: cluster 2024-02-22T22:30:37.158077+0000 mgr.smithi049.pzczis (mgr.14180) 364 : 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, 170 B/s wr, 0 op/s 2024-02-22T22:30:38.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:38 smithi049 bash[14150]: audit 2024-02-22T22:30:37.197261+0000 mgr.smithi049.pzczis (mgr.14180) 365 : audit [DBG] from='client.14672 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:30:39.016 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:30:40.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:40 smithi049 bash[14150]: cluster 2024-02-22T22:30:39.159605+0000 mgr.smithi049.pzczis (mgr.14180) 366 : 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-22T22:30:40.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:40 smithi195 bash[18068]: cluster 2024-02-22T22:30:39.159605+0000 mgr.smithi049.pzczis (mgr.14180) 366 : 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-22T22:30:42.034 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:30:42.035 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:29:51.216019Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:29:50.525546Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:29:51.216524Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:45.012302Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lqjwxx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:55.346791Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.einrkx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\nDeploy daemon haproxy.nfs.foo.smithi195.einrkx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.123382Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.eyaxys on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\nDeploy daemon haproxy.nfs.foo.smithi049.eyaxys ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.126271Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.idmrxu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:29:50.525841Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:29:50.525997Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:29:51.218538Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:29:50.526133Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:29:50.526264Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:29:51.217022Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:29:50.526845Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:30:42.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:42 smithi049 bash[14150]: cluster 2024-02-22T22:30:41.161635+0000 mgr.smithi049.pzczis (mgr.14180) 367 : 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-22T22:30:42.703 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:30:42.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:42 smithi195 bash[18068]: cluster 2024-02-22T22:30:41.161635+0000 mgr.smithi049.pzczis (mgr.14180) 367 : 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-22T22:30:43.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:43 smithi049 bash[14150]: audit 2024-02-22T22:30:42.023533+0000 mgr.smithi049.pzczis (mgr.14180) 368 : audit [DBG] from='client.14676 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:30:43.703 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:30:43.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:43 smithi195 bash[18068]: audit 2024-02-22T22:30:42.023533+0000 mgr.smithi049.pzczis (mgr.14180) 368 : audit [DBG] from='client.14676 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:30:44.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:44 smithi049 bash[14150]: cluster 2024-02-22T22:30:43.163310+0000 mgr.smithi049.pzczis (mgr.14180) 369 : cluster [DBG] pgmap v311: 225 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-22T22:30:44.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:44 smithi195 bash[18068]: cluster 2024-02-22T22:30:43.163310+0000 mgr.smithi049.pzczis (mgr.14180) 369 : cluster [DBG] pgmap v311: 225 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-22T22:30:46.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:46 smithi049 bash[14150]: cluster 2024-02-22T22:30:45.164406+0000 mgr.smithi049.pzczis (mgr.14180) 370 : 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-22T22:30:46.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:46 smithi195 bash[18068]: cluster 2024-02-22T22:30:45.164406+0000 mgr.smithi049.pzczis (mgr.14180) 370 : 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-22T22:30:46.905 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:30:46.905 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:29:51.216019Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:29:50.525546Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:29:51.216524Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:45.012302Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lqjwxx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:55.346791Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.einrkx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\nDeploy daemon haproxy.nfs.foo.smithi195.einrkx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.123382Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.eyaxys on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\nDeploy daemon haproxy.nfs.foo.smithi049.eyaxys ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.126271Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.idmrxu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:29:50.525841Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:29:50.525997Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:29:51.218538Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:29:50.526133Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:29:50.526264Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:29:51.217022Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:29:50.526845Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:30:47.703 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:30:48.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:48 smithi195 bash[18068]: audit 2024-02-22T22:30:46.895662+0000 mgr.smithi049.pzczis (mgr.14180) 371 : audit [DBG] from='client.14680 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:30:48.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:48 smithi195 bash[18068]: cluster 2024-02-22T22:30:47.166371+0000 mgr.smithi049.pzczis (mgr.14180) 372 : cluster [DBG] pgmap v313: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:30:48.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:48 smithi049 bash[14150]: audit 2024-02-22T22:30:46.895662+0000 mgr.smithi049.pzczis (mgr.14180) 371 : audit [DBG] from='client.14680 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:30:48.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:48 smithi049 bash[14150]: cluster 2024-02-22T22:30:47.166371+0000 mgr.smithi049.pzczis (mgr.14180) 372 : cluster [DBG] pgmap v313: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:30:48.703 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:30:50.662 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:50 smithi049 bash[14150]: cluster 2024-02-22T22:30:49.167816+0000 mgr.smithi049.pzczis (mgr.14180) 373 : 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-22T22:30:50.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:50 smithi195 bash[18068]: cluster 2024-02-22T22:30:49.167816+0000 mgr.smithi049.pzczis (mgr.14180) 373 : 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-22T22:30:51.966 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:30:51.966 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:29:51.216019Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:29:50.525546Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:29:51.216524Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:45.012302Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lqjwxx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:55.346791Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.einrkx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\nDeploy daemon haproxy.nfs.foo.smithi195.einrkx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.123382Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.eyaxys on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\nDeploy daemon haproxy.nfs.foo.smithi049.eyaxys ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.126271Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.idmrxu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:29:50.525841Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:29:50.525997Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:29:51.218538Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:29:50.526133Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:29:50.526264Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:29:51.217022Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:29:50.526845Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:30:52.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:52 smithi049 bash[14150]: cluster 2024-02-22T22:30:51.169799+0000 mgr.smithi049.pzczis (mgr.14180) 374 : 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-22T22:30:52.673 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:30:52.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:52 smithi195 bash[18068]: cluster 2024-02-22T22:30:51.169799+0000 mgr.smithi049.pzczis (mgr.14180) 374 : 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-22T22:30:53.674 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:30:53.687 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:53 smithi049 bash[14150]: audit 2024-02-22T22:30:51.960305+0000 mgr.smithi049.pzczis (mgr.14180) 375 : audit [DBG] from='client.14684 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:30:53.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:53 smithi195 bash[18068]: audit 2024-02-22T22:30:51.960305+0000 mgr.smithi049.pzczis (mgr.14180) 375 : audit [DBG] from='client.14684 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:30:54.674 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:54 smithi049 bash[14150]: cluster 2024-02-22T22:30:53.171431+0000 mgr.smithi049.pzczis (mgr.14180) 376 : cluster [DBG] pgmap v316: 225 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-22T22:30:54.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:54 smithi195 bash[18068]: cluster 2024-02-22T22:30:53.171431+0000 mgr.smithi049.pzczis (mgr.14180) 376 : cluster [DBG] pgmap v316: 225 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-22T22:30:56.568 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:56 smithi049 bash[14150]: cluster 2024-02-22T22:30:55.172424+0000 mgr.smithi049.pzczis (mgr.14180) 377 : 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-22T22:30:56.702 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:30:56.702 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:29:51.216019Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:29:50.525546Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:29:51.216524Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:45.012302Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lqjwxx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:55.346791Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.einrkx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\nDeploy daemon haproxy.nfs.foo.smithi195.einrkx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.123382Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.eyaxys on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\nDeploy daemon haproxy.nfs.foo.smithi049.eyaxys ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.126271Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.idmrxu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:29:50.525841Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:29:50.525997Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:29:51.218538Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:29:50.526133Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:29:50.526264Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:29:51.217022Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:29:50.526845Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:30:56.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:56 smithi195 bash[18068]: cluster 2024-02-22T22:30:55.172424+0000 mgr.smithi049.pzczis (mgr.14180) 377 : 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-22T22:30:57.431 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:30:58.431 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:30:58.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:58 smithi195 bash[18068]: audit 2024-02-22T22:30:56.692255+0000 mgr.smithi049.pzczis (mgr.14180) 378 : audit [DBG] from='client.14688 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:30:58.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:58 smithi195 bash[18068]: cluster 2024-02-22T22:30:57.174359+0000 mgr.smithi049.pzczis (mgr.14180) 379 : cluster [DBG] pgmap v318: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:30:58.634 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:58 smithi049 bash[14150]: audit 2024-02-22T22:30:56.692255+0000 mgr.smithi049.pzczis (mgr.14180) 378 : audit [DBG] from='client.14688 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:30:58.634 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:58 smithi049 bash[14150]: cluster 2024-02-22T22:30:57.174359+0000 mgr.smithi049.pzczis (mgr.14180) 379 : cluster [DBG] pgmap v318: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:30:59.672 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:30:59 smithi049 bash[14150]: audit 2024-02-22T22:30:59.133766+0000 mon.smithi049 (mon.0) 774 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:30:59.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:30:59 smithi195 bash[18068]: audit 2024-02-22T22:30:59.133766+0000 mon.smithi049 (mon.0) 774 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:31:00.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:00 smithi049 bash[14150]: cluster 2024-02-22T22:30:59.175852+0000 mgr.smithi049.pzczis (mgr.14180) 380 : 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-22T22:31:00.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:00 smithi049 bash[14150]: audit 2024-02-22T22:30:59.400071+0000 mon.smithi049 (mon.0) 775 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:31:00.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:00 smithi195 bash[18068]: cluster 2024-02-22T22:30:59.175852+0000 mgr.smithi049.pzczis (mgr.14180) 380 : 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-22T22:31:00.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:00 smithi195 bash[18068]: audit 2024-02-22T22:30:59.400071+0000 mon.smithi049 (mon.0) 775 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:31:01.614 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:31:01.614 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:29:51.216019Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:29:50.525546Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:29:51.216524Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:45.012302Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lqjwxx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:55.346791Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.einrkx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\nDeploy daemon haproxy.nfs.foo.smithi195.einrkx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.123382Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.eyaxys on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\nDeploy daemon haproxy.nfs.foo.smithi049.eyaxys ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.126271Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.idmrxu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:29:50.525841Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:29:50.525997Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:29:51.218538Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:29:50.526133Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:29:50.526264Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:29:51.217022Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:29:50.526845Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:31:02.349 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:31:02.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:02 smithi049 bash[14150]: cluster 2024-02-22T22:31:01.177837+0000 mgr.smithi049.pzczis (mgr.14180) 381 : 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-22T22:31:02.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:02 smithi049 bash[14150]: audit 2024-02-22T22:31:01.609668+0000 mgr.smithi049.pzczis (mgr.14180) 382 : audit [DBG] from='client.14692 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:31:02.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:02 smithi195 bash[18068]: cluster 2024-02-22T22:31:01.177837+0000 mgr.smithi049.pzczis (mgr.14180) 381 : 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-22T22:31:02.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:02 smithi195 bash[18068]: audit 2024-02-22T22:31:01.609668+0000 mgr.smithi049.pzczis (mgr.14180) 382 : audit [DBG] from='client.14692 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:31:03.350 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:31:04.612 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:04 smithi049 bash[14150]: cluster 2024-02-22T22:31:03.179521+0000 mgr.smithi049.pzczis (mgr.14180) 383 : cluster [DBG] pgmap v321: 225 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-22T22:31:04.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:04 smithi195 bash[18068]: cluster 2024-02-22T22:31:03.179521+0000 mgr.smithi049.pzczis (mgr.14180) 383 : cluster [DBG] pgmap v321: 225 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-22T22:31:05.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:05 smithi049 bash[14150]: audit 2024-02-22T22:31:04.649784+0000 mon.smithi049 (mon.0) 776 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:31:05.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:05 smithi049 bash[14150]: cluster 2024-02-22T22:31:05.180470+0000 mgr.smithi049.pzczis (mgr.14180) 384 : cluster [DBG] pgmap v322: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:31:06.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:05 smithi195 bash[18068]: audit 2024-02-22T22:31:04.649784+0000 mon.smithi049 (mon.0) 776 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:31:06.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:05 smithi195 bash[18068]: cluster 2024-02-22T22:31:05.180470+0000 mgr.smithi049.pzczis (mgr.14180) 384 : cluster [DBG] pgmap v322: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:31:06.405 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:31:06.405 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:31:06.096095Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:31:06.096565Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:45.012302Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lqjwxx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:55.346791Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.einrkx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\nDeploy daemon haproxy.nfs.foo.smithi195.einrkx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.123382Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.eyaxys on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\nDeploy daemon haproxy.nfs.foo.smithi049.eyaxys ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.126271Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.idmrxu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:31:06.098400Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:31:06.097024Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:31:07.178 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:31:07.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:07 smithi049 bash[14150]: audit 2024-02-22T22:31:06.107778+0000 mon.smithi049 (mon.0) 777 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:31:07.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:07 smithi049 bash[14150]: audit 2024-02-22T22:31:06.384825+0000 mon.smithi049 (mon.0) 778 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:31:07.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:07 smithi049 bash[14150]: audit 2024-02-22T22:31:06.386283+0000 mon.smithi049 (mon.0) 779 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:31:07.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:07 smithi049 bash[14150]: audit 2024-02-22T22:31:06.394133+0000 mon.smithi049 (mon.0) 780 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:31:07.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:07 smithi049 bash[14150]: cluster 2024-02-22T22:31:06.395694+0000 mgr.smithi049.pzczis (mgr.14180) 385 : cluster [DBG] pgmap v323: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 91 B/s rd, 0 op/s 2024-02-22T22:31:07.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:07 smithi049 bash[14150]: audit 2024-02-22T22:31:06.397493+0000 mgr.smithi049.pzczis (mgr.14180) 386 : audit [DBG] from='client.14696 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:31:07.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:07 smithi049 bash[14150]: audit 2024-02-22T22:31:06.411136+0000 mon.smithi049 (mon.0) 781 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:31:07.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:07 smithi049 bash[14150]: audit 2024-02-22T22:31:06.427282+0000 mon.smithi049 (mon.0) 782 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:31:07.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:07 smithi049 bash[14150]: cephadm 2024-02-22T22:31:06.433162+0000 mgr.smithi049.pzczis (mgr.14180) 387 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.hxxcok on smithi195 2024-02-22T22:31:07.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:07 smithi195 bash[18068]: audit 2024-02-22T22:31:06.107778+0000 mon.smithi049 (mon.0) 777 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:31:07.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:07 smithi195 bash[18068]: audit 2024-02-22T22:31:06.384825+0000 mon.smithi049 (mon.0) 778 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:31:07.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:07 smithi195 bash[18068]: audit 2024-02-22T22:31:06.386283+0000 mon.smithi049 (mon.0) 779 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:31:07.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:07 smithi195 bash[18068]: audit 2024-02-22T22:31:06.394133+0000 mon.smithi049 (mon.0) 780 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:31:07.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:07 smithi195 bash[18068]: cluster 2024-02-22T22:31:06.395694+0000 mgr.smithi049.pzczis (mgr.14180) 385 : cluster [DBG] pgmap v323: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 91 B/s rd, 0 op/s 2024-02-22T22:31:07.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:07 smithi195 bash[18068]: audit 2024-02-22T22:31:06.397493+0000 mgr.smithi049.pzczis (mgr.14180) 386 : audit [DBG] from='client.14696 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:31:07.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:07 smithi195 bash[18068]: audit 2024-02-22T22:31:06.411136+0000 mon.smithi049 (mon.0) 781 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:31:07.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:07 smithi195 bash[18068]: audit 2024-02-22T22:31:06.427282+0000 mon.smithi049 (mon.0) 782 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:31:07.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:07 smithi195 bash[18068]: cephadm 2024-02-22T22:31:06.433162+0000 mgr.smithi049.pzczis (mgr.14180) 387 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.hxxcok on smithi195 2024-02-22T22:31:08.179 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:31:08.381 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:08 smithi049 bash[14150]: cluster 2024-02-22T22:31:07.391108+0000 mon.smithi049 (mon.0) 783 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:31:08.381 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:08 smithi049 bash[14150]: cluster 2024-02-22T22:31:07.391190+0000 mon.smithi049 (mon.0) 784 : cluster [INF] Cluster is now healthy 2024-02-22T22:31:08.381 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:08 smithi049 bash[14150]: audit 2024-02-22T22:31:07.648395+0000 mon.smithi049 (mon.0) 785 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:31:08.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:08 smithi195 bash[18068]: cluster 2024-02-22T22:31:07.391108+0000 mon.smithi049 (mon.0) 783 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:31:08.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:08 smithi195 bash[18068]: cluster 2024-02-22T22:31:07.391190+0000 mon.smithi049 (mon.0) 784 : cluster [INF] Cluster is now healthy 2024-02-22T22:31:08.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:08 smithi195 bash[18068]: audit 2024-02-22T22:31:07.648395+0000 mon.smithi049 (mon.0) 785 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:31:09.373 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:09 smithi049 bash[14150]: cluster 2024-02-22T22:31:08.397041+0000 mgr.smithi049.pzczis (mgr.14180) 388 : cluster [DBG] pgmap v324: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 91 B/s rd, 0 op/s 2024-02-22T22:31:09.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:09 smithi195 bash[18068]: cluster 2024-02-22T22:31:08.397041+0000 mgr.smithi049.pzczis (mgr.14180) 388 : cluster [DBG] pgmap v324: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 91 B/s rd, 0 op/s 2024-02-22T22:31:10.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:10 smithi195 bash[18068]: audit 2024-02-22T22:31:10.430326+0000 mon.smithi049 (mon.0) 786 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.hxxcok"}]: dispatch 2024-02-22T22:31:10.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:10 smithi049 bash[14150]: audit 2024-02-22T22:31:10.430326+0000 mon.smithi049 (mon.0) 786 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.hxxcok"}]: dispatch 2024-02-22T22:31:11.416 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:31:11.416 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:31:06.096095Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:31:06.096565Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:55.346791Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.einrkx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-einrkx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.einrkx\nDeploy daemon haproxy.nfs.foo.smithi195.einrkx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.123382Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.eyaxys on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-eyaxys\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.eyaxys\nDeploy daemon haproxy.nfs.foo.smithi049.eyaxys ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:29:59.126271Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.idmrxu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:10.431706Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hxxcok on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\nDeploy daemon haproxy.nfs.foo.smithi195.hxxcok ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:31:06.098400Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:31:06.097024Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:31:11.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: cluster 2024-02-22T22:31:10.398414+0000 mgr.smithi049.pzczis (mgr.14180) 389 : cluster [DBG] pgmap v325: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 91 B/s rd, 0 op/s 2024-02-22T22:31:11.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: cephadm 2024-02-22T22:31:10.429552+0000 mgr.smithi049.pzczis (mgr.14180) 390 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok 2024-02-22T22:31:11.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:31:11.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok 2024-02-22T22:31:11.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok 2024-02-22T22:31:11.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:31:11.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok 2024-02-22T22:31:11.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.hxxcok ... 2024-02-22T22:31:11.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:31:11.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:31:11.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:31:11.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:31:11.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:31:11.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:31:11.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:31:11.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:31:11.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:31:11.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:31:11.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok 2024-02-22T22:31:11.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:31:11.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok 2024-02-22T22:31:11.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok 2024-02-22T22:31:11.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:31:11.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok 2024-02-22T22:31:11.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.hxxcok ... 2024-02-22T22:31:11.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:31:11.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:31:11.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:31:11.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:31:11.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:31:11.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: cephadm 2024-02-22T22:31:10.429825+0000 mgr.smithi049.pzczis (mgr.14180) 391 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.hxxcok 2024-02-22T22:31:11.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: cephadm 2024-02-22T22:31:10.431946+0000 mgr.smithi049.pzczis (mgr.14180) 392 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.hxxcok on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok 2024-02-22T22:31:11.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:31:11.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok 2024-02-22T22:31:11.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok 2024-02-22T22:31:11.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:31:11.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok 2024-02-22T22:31:11.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.hxxcok ... 2024-02-22T22:31:11.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:31:11.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:31:11.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:31:11.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:31:11.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:31:11.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:11 smithi195 bash[18068]: cephadm 2024-02-22T22:31:10.437111+0000 mgr.smithi049.pzczis (mgr.14180) 393 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.gzxtkc on smithi049 2024-02-22T22:31:11.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: cluster 2024-02-22T22:31:10.398414+0000 mgr.smithi049.pzczis (mgr.14180) 389 : cluster [DBG] pgmap v325: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 91 B/s rd, 0 op/s 2024-02-22T22:31:11.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: cephadm 2024-02-22T22:31:10.429552+0000 mgr.smithi049.pzczis (mgr.14180) 390 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok 2024-02-22T22:31:11.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:31:11.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok 2024-02-22T22:31:11.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok 2024-02-22T22:31:11.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:31:11.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok 2024-02-22T22:31:11.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.hxxcok ... 2024-02-22T22:31:11.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:31:11.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:31:11.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:31:11.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:31:11.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:31:11.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:31:11.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:31:11.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:31:11.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:31:11.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:31:11.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok 2024-02-22T22:31:11.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:31:11.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok 2024-02-22T22:31:11.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok 2024-02-22T22:31:11.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:31:11.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok 2024-02-22T22:31:11.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.hxxcok ... 2024-02-22T22:31:11.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:31:11.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:31:11.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:31:11.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:31:11.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:31:11.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: cephadm 2024-02-22T22:31:10.429825+0000 mgr.smithi049.pzczis (mgr.14180) 391 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.hxxcok 2024-02-22T22:31:11.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: cephadm 2024-02-22T22:31:10.431946+0000 mgr.smithi049.pzczis (mgr.14180) 392 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.hxxcok on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok 2024-02-22T22:31:11.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:31:11.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok 2024-02-22T22:31:11.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok 2024-02-22T22:31:11.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:31:11.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok 2024-02-22T22:31:11.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.hxxcok ... 2024-02-22T22:31:11.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:31:11.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:31:11.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:31:11.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:31:11.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:31:11.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:11 smithi049 bash[14150]: cephadm 2024-02-22T22:31:10.437111+0000 mgr.smithi049.pzczis (mgr.14180) 393 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.gzxtkc on smithi049 2024-02-22T22:31:12.207 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:31:12.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:12 smithi195 bash[18068]: audit 2024-02-22T22:31:11.407320+0000 mgr.smithi049.pzczis (mgr.14180) 394 : audit [DBG] from='client.14700 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:31:12.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:12 smithi049 bash[14150]: audit 2024-02-22T22:31:11.407320+0000 mgr.smithi049.pzczis (mgr.14180) 394 : audit [DBG] from='client.14700 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:31:13.208 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:31:13.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:13 smithi049 bash[14150]: cluster 2024-02-22T22:31:12.400049+0000 mgr.smithi049.pzczis (mgr.14180) 395 : cluster [DBG] pgmap v326: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 182 B/s rd, 0 op/s 2024-02-22T22:31:13.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:13 smithi195 bash[18068]: cluster 2024-02-22T22:31:12.400049+0000 mgr.smithi049.pzczis (mgr.14180) 395 : cluster [DBG] pgmap v326: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 182 B/s rd, 0 op/s 2024-02-22T22:31:15.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: cluster 2024-02-22T22:31:14.401068+0000 mgr.smithi049.pzczis (mgr.14180) 396 : cluster [DBG] pgmap v327: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 91 B/s rd, 0 op/s 2024-02-22T22:31:15.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: cephadm 2024-02-22T22:31:14.517723+0000 mgr.smithi049.pzczis (mgr.14180) 397 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc 2024-02-22T22:31:15.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:31:15.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc 2024-02-22T22:31:15.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc 2024-02-22T22:31:15.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:31:15.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc 2024-02-22T22:31:15.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.gzxtkc ... 2024-02-22T22:31:15.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:31:15.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:31:15.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:31:15.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:31:15.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:31:15.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:31:15.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:31:15.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:31:15.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:31:15.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:31:15.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc 2024-02-22T22:31:15.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:31:15.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc 2024-02-22T22:31:15.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc 2024-02-22T22:31:15.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:31:15.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc 2024-02-22T22:31:15.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.gzxtkc ... 2024-02-22T22:31:15.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:31:15.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:31:15.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:31:15.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:31:15.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:31:15.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: cephadm 2024-02-22T22:31:14.518232+0000 mgr.smithi049.pzczis (mgr.14180) 398 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.gzxtkc 2024-02-22T22:31:15.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: audit 2024-02-22T22:31:14.518871+0000 mon.smithi049 (mon.0) 787 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.gzxtkc"}]: dispatch 2024-02-22T22:31:15.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: cephadm 2024-02-22T22:31:14.520016+0000 mgr.smithi049.pzczis (mgr.14180) 399 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.gzxtkc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc 2024-02-22T22:31:15.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:31:15.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc 2024-02-22T22:31:15.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc 2024-02-22T22:31:15.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:31:15.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc 2024-02-22T22:31:15.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.gzxtkc ... 2024-02-22T22:31:15.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:31:15.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:31:15.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:31:15.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:31:15.809 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:31:15.809 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: cephadm 2024-02-22T22:31:14.523725+0000 mgr.smithi049.pzczis (mgr.14180) 400 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.ynznle on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:31:15.809 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: cephadm 2024-02-22T22:31:14.525994+0000 mgr.smithi049.pzczis (mgr.14180) 401 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:31:15.809 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:15 smithi195 bash[18068]: cluster 2024-02-22T22:31:14.527037+0000 mgr.smithi049.pzczis (mgr.14180) 402 : cluster [DBG] pgmap v328: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 109 B/s rd, 0 op/s 2024-02-22T22:31:15.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: cluster 2024-02-22T22:31:14.401068+0000 mgr.smithi049.pzczis (mgr.14180) 396 : cluster [DBG] pgmap v327: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 91 B/s rd, 0 op/s 2024-02-22T22:31:15.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: cephadm 2024-02-22T22:31:14.517723+0000 mgr.smithi049.pzczis (mgr.14180) 397 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc 2024-02-22T22:31:15.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:31:15.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc 2024-02-22T22:31:15.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc 2024-02-22T22:31:15.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:31:15.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc 2024-02-22T22:31:15.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.gzxtkc ... 2024-02-22T22:31:15.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:31:15.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:31:15.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:31:15.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:31:15.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:31:15.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:31:15.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:31:15.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:31:15.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:31:15.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:31:15.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc 2024-02-22T22:31:15.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:31:15.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc 2024-02-22T22:31:15.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc 2024-02-22T22:31:15.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:31:15.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc 2024-02-22T22:31:15.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.gzxtkc ... 2024-02-22T22:31:15.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:31:15.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:31:15.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:31:15.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:31:15.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:31:15.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: cephadm 2024-02-22T22:31:14.518232+0000 mgr.smithi049.pzczis (mgr.14180) 398 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.gzxtkc 2024-02-22T22:31:15.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: audit 2024-02-22T22:31:14.518871+0000 mon.smithi049 (mon.0) 787 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.gzxtkc"}]: dispatch 2024-02-22T22:31:15.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: cephadm 2024-02-22T22:31:14.520016+0000 mgr.smithi049.pzczis (mgr.14180) 399 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.gzxtkc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc 2024-02-22T22:31:15.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:31:15.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc 2024-02-22T22:31:15.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc 2024-02-22T22:31:15.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:31:15.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc 2024-02-22T22:31:15.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.gzxtkc ... 2024-02-22T22:31:15.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:31:15.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:31:15.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:31:15.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:31:15.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:31:15.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: cephadm 2024-02-22T22:31:14.523725+0000 mgr.smithi049.pzczis (mgr.14180) 400 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.ynznle on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:31:15.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: cephadm 2024-02-22T22:31:14.525994+0000 mgr.smithi049.pzczis (mgr.14180) 401 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:31:15.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:15 smithi049 bash[14150]: cluster 2024-02-22T22:31:14.527037+0000 mgr.smithi049.pzczis (mgr.14180) 402 : cluster [DBG] pgmap v328: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 109 B/s rd, 0 op/s 2024-02-22T22:31:16.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:16 smithi049 bash[14150]: cluster 2024-02-22T22:31:15.503295+0000 mon.smithi049 (mon.0) 788 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:31:16.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:16 smithi049 bash[14150]: audit 2024-02-22T22:31:16.206347+0000 mon.smithi049 (mon.0) 789 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:31:16.735 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:31:16.736 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:31:06.096095Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:31:06.096565Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:10.431706Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hxxcok on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\nDeploy daemon haproxy.nfs.foo.smithi195.hxxcok ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.519864Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gzxtkc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\nDeploy daemon haproxy.nfs.foo.smithi049.gzxtkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.523584Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ynznle on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:31:06.098400Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:31:06.097024Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:31:16.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:16 smithi195 bash[18068]: cluster 2024-02-22T22:31:15.503295+0000 mon.smithi049 (mon.0) 788 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:31:16.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:16 smithi195 bash[18068]: audit 2024-02-22T22:31:16.206347+0000 mon.smithi049 (mon.0) 789 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:31:17.502 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:31:17.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:17 smithi195 bash[18068]: cluster 2024-02-22T22:31:16.528681+0000 mgr.smithi049.pzczis (mgr.14180) 403 : cluster [DBG] pgmap v329: 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-22T22:31:17.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:17 smithi049 bash[14150]: cluster 2024-02-22T22:31:16.528681+0000 mgr.smithi049.pzczis (mgr.14180) 403 : cluster [DBG] pgmap v329: 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-22T22:31:18.503 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:31:18.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:18 smithi195 bash[18068]: audit 2024-02-22T22:31:16.730956+0000 mgr.smithi049.pzczis (mgr.14180) 404 : audit [DBG] from='client.14704 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:31:18.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:18 smithi049 bash[14150]: audit 2024-02-22T22:31:16.730956+0000 mgr.smithi049.pzczis (mgr.14180) 404 : audit [DBG] from='client.14704 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:31:19.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:19 smithi195 bash[18068]: cluster 2024-02-22T22:31:18.530045+0000 mgr.smithi049.pzczis (mgr.14180) 405 : cluster [DBG] pgmap v330: 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-22T22:31:19.818 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:19 smithi049 bash[14150]: cluster 2024-02-22T22:31:18.530045+0000 mgr.smithi049.pzczis (mgr.14180) 405 : cluster [DBG] pgmap v330: 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-22T22:31:21.599 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:31:21.599 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:31:06.096095Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:31:06.096565Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:10.431706Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hxxcok on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\nDeploy daemon haproxy.nfs.foo.smithi195.hxxcok ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.519864Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gzxtkc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\nDeploy daemon haproxy.nfs.foo.smithi049.gzxtkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.523584Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ynznle on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:31:06.098400Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:31:06.097024Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:31:21.793 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:21 smithi049 bash[14150]: cluster 2024-02-22T22:31:20.531666+0000 mgr.smithi049.pzczis (mgr.14180) 406 : cluster [DBG] pgmap v331: 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-22T22:31:21.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:21 smithi195 bash[18068]: cluster 2024-02-22T22:31:20.531666+0000 mgr.smithi049.pzczis (mgr.14180) 406 : cluster [DBG] pgmap v331: 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-22T22:31:22.398 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:31:22.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:22 smithi049 bash[14150]: audit 2024-02-22T22:31:21.589718+0000 mgr.smithi049.pzczis (mgr.14180) 407 : audit [DBG] from='client.14708 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:31:22.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:22 smithi195 bash[18068]: audit 2024-02-22T22:31:21.589718+0000 mgr.smithi049.pzczis (mgr.14180) 407 : audit [DBG] from='client.14708 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:31:23.399 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:31:23.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:23 smithi049 bash[14150]: cluster 2024-02-22T22:31:22.533571+0000 mgr.smithi049.pzczis (mgr.14180) 408 : cluster [DBG] pgmap v332: 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-22T22:31:23.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:23 smithi049 bash[14150]: audit 2024-02-22T22:31:22.648784+0000 mon.smithi049 (mon.0) 790 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:31:24.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:23 smithi195 bash[18068]: cluster 2024-02-22T22:31:22.533571+0000 mgr.smithi049.pzczis (mgr.14180) 408 : cluster [DBG] pgmap v332: 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-22T22:31:24.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:23 smithi195 bash[18068]: audit 2024-02-22T22:31:22.648784+0000 mon.smithi049 (mon.0) 790 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:31:25.922 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:25 smithi049 bash[14150]: cluster 2024-02-22T22:31:24.534790+0000 mgr.smithi049.pzczis (mgr.14180) 409 : cluster [DBG] pgmap v333: 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-22T22:31:26.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:25 smithi195 bash[18068]: cluster 2024-02-22T22:31:24.534790+0000 mgr.smithi049.pzczis (mgr.14180) 409 : cluster [DBG] pgmap v333: 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-22T22:31:26.302 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:31:26.302 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:31:06.096095Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:31:06.096565Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:10.431706Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hxxcok on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\nDeploy daemon haproxy.nfs.foo.smithi195.hxxcok ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.519864Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gzxtkc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\nDeploy daemon haproxy.nfs.foo.smithi049.gzxtkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.523584Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ynznle on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:31:06.098400Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:31:06.097024Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:31:27.077 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:31:27.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:27 smithi049 bash[14150]: audit 2024-02-22T22:31:26.297343+0000 mgr.smithi049.pzczis (mgr.14180) 410 : audit [DBG] from='client.14712 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:31:27.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:27 smithi049 bash[14150]: cluster 2024-02-22T22:31:26.535781+0000 mgr.smithi049.pzczis (mgr.14180) 411 : cluster [DBG] pgmap v334: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:31:28.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:27 smithi195 bash[18068]: audit 2024-02-22T22:31:26.297343+0000 mgr.smithi049.pzczis (mgr.14180) 410 : audit [DBG] from='client.14712 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:31:28.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:27 smithi195 bash[18068]: cluster 2024-02-22T22:31:26.535781+0000 mgr.smithi049.pzczis (mgr.14180) 411 : cluster [DBG] pgmap v334: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:31:28.079 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:31:29.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:29 smithi049 bash[14150]: cluster 2024-02-22T22:31:28.536571+0000 mgr.smithi049.pzczis (mgr.14180) 412 : cluster [DBG] pgmap v335: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:31:30.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:29 smithi195 bash[18068]: cluster 2024-02-22T22:31:28.536571+0000 mgr.smithi049.pzczis (mgr.14180) 412 : cluster [DBG] pgmap v335: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:31:31.359 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:31:31.360 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:31:06.096095Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:31:06.096565Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:10.431706Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hxxcok on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\nDeploy daemon haproxy.nfs.foo.smithi195.hxxcok ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.519864Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gzxtkc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\nDeploy daemon haproxy.nfs.foo.smithi049.gzxtkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.523584Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ynznle on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:31:06.098400Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:31:06.097024Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:31:31.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:31 smithi049 bash[14150]: cluster 2024-02-22T22:31:30.538127+0000 mgr.smithi049.pzczis (mgr.14180) 413 : cluster [DBG] pgmap v336: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:31:32.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:31 smithi195 bash[18068]: cluster 2024-02-22T22:31:30.538127+0000 mgr.smithi049.pzczis (mgr.14180) 413 : cluster [DBG] pgmap v336: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:31:32.055 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:31:32.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:32 smithi049 bash[14150]: audit 2024-02-22T22:31:31.350990+0000 mgr.smithi049.pzczis (mgr.14180) 414 : audit [DBG] from='client.14716 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:31:33.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:32 smithi195 bash[18068]: audit 2024-02-22T22:31:31.350990+0000 mgr.smithi049.pzczis (mgr.14180) 414 : audit [DBG] from='client.14716 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:31:33.056 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:31:33.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:33 smithi049 bash[14150]: cluster 2024-02-22T22:31:32.540002+0000 mgr.smithi049.pzczis (mgr.14180) 415 : cluster [DBG] pgmap v337: 225 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-22T22:31:34.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:33 smithi195 bash[18068]: cluster 2024-02-22T22:31:32.540002+0000 mgr.smithi049.pzczis (mgr.14180) 415 : cluster [DBG] pgmap v337: 225 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-22T22:31:35.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:35 smithi049 bash[14150]: cluster 2024-02-22T22:31:34.541209+0000 mgr.smithi049.pzczis (mgr.14180) 416 : cluster [DBG] pgmap v338: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:31:36.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:35 smithi195 bash[18068]: cluster 2024-02-22T22:31:34.541209+0000 mgr.smithi049.pzczis (mgr.14180) 416 : cluster [DBG] pgmap v338: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:31:36.150 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:31:36.150 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:31:06.096095Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:31:06.096565Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:10.431706Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hxxcok on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\nDeploy daemon haproxy.nfs.foo.smithi195.hxxcok ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.519864Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gzxtkc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\nDeploy daemon haproxy.nfs.foo.smithi049.gzxtkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.523584Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ynznle on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:31:06.098400Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:31:06.097024Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:31:36.871 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:31:37.871 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:31:37.885 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:37 smithi049 bash[14150]: audit 2024-02-22T22:31:36.141644+0000 mgr.smithi049.pzczis (mgr.14180) 417 : audit [DBG] from='client.14720 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:31:37.885 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:37 smithi049 bash[14150]: cluster 2024-02-22T22:31:36.542320+0000 mgr.smithi049.pzczis (mgr.14180) 418 : cluster [DBG] pgmap v339: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:31:38.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:37 smithi195 bash[18068]: audit 2024-02-22T22:31:36.141644+0000 mgr.smithi049.pzczis (mgr.14180) 417 : audit [DBG] from='client.14720 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:31:38.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:37 smithi195 bash[18068]: cluster 2024-02-22T22:31:36.542320+0000 mgr.smithi049.pzczis (mgr.14180) 418 : cluster [DBG] pgmap v339: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:31:39.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:39 smithi049 bash[14150]: cluster 2024-02-22T22:31:38.543380+0000 mgr.smithi049.pzczis (mgr.14180) 419 : cluster [DBG] pgmap v340: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:31:40.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:39 smithi195 bash[18068]: cluster 2024-02-22T22:31:38.543380+0000 mgr.smithi049.pzczis (mgr.14180) 419 : cluster [DBG] pgmap v340: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:31:40.959 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:31:40.959 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:31:06.096095Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:31:06.096565Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:10.431706Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hxxcok on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\nDeploy daemon haproxy.nfs.foo.smithi195.hxxcok ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.519864Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gzxtkc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\nDeploy daemon haproxy.nfs.foo.smithi049.gzxtkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.523584Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ynznle on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:31:06.098400Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:31:06.097024Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:31:41.721 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:31:41.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:41 smithi049 bash[14150]: cluster 2024-02-22T22:31:40.544387+0000 mgr.smithi049.pzczis (mgr.14180) 420 : 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-22T22:31:42.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:41 smithi195 bash[18068]: cluster 2024-02-22T22:31:40.544387+0000 mgr.smithi049.pzczis (mgr.14180) 420 : 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-22T22:31:42.722 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:31:42.925 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:42 smithi049 bash[14150]: audit 2024-02-22T22:31:40.948788+0000 mgr.smithi049.pzczis (mgr.14180) 421 : audit [DBG] from='client.14724 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:31:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:42 smithi195 bash[18068]: audit 2024-02-22T22:31:40.948788+0000 mgr.smithi049.pzczis (mgr.14180) 421 : audit [DBG] from='client.14724 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:31:43.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:43 smithi049 bash[14150]: cluster 2024-02-22T22:31:42.546235+0000 mgr.smithi049.pzczis (mgr.14180) 422 : cluster [DBG] pgmap v342: 225 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-22T22:31:44.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:43 smithi195 bash[18068]: cluster 2024-02-22T22:31:42.546235+0000 mgr.smithi049.pzczis (mgr.14180) 422 : cluster [DBG] pgmap v342: 225 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-22T22:31:44.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:44 smithi049 bash[14150]: cluster 2024-02-22T22:31:44.547611+0000 mgr.smithi049.pzczis (mgr.14180) 423 : 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-22T22:31:45.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:44 smithi195 bash[18068]: cluster 2024-02-22T22:31:44.547611+0000 mgr.smithi049.pzczis (mgr.14180) 423 : 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-22T22:31:45.804 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:31:45.804 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:31:06.096095Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:31:06.096565Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:10.431706Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hxxcok on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\nDeploy daemon haproxy.nfs.foo.smithi195.hxxcok ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.519864Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gzxtkc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\nDeploy daemon haproxy.nfs.foo.smithi049.gzxtkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.523584Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ynznle on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:31:06.098400Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:31:06.097024Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:31:46.508 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:31:47.509 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:31:47.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:47 smithi049 bash[14150]: audit 2024-02-22T22:31:45.793892+0000 mgr.smithi049.pzczis (mgr.14180) 424 : audit [DBG] from='client.14728 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:31:47.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:47 smithi049 bash[14150]: cluster 2024-02-22T22:31:46.549647+0000 mgr.smithi049.pzczis (mgr.14180) 425 : 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-22T22:31:48.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:47 smithi195 bash[18068]: audit 2024-02-22T22:31:45.793892+0000 mgr.smithi049.pzczis (mgr.14180) 424 : audit [DBG] from='client.14728 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:31:48.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:47 smithi195 bash[18068]: cluster 2024-02-22T22:31:46.549647+0000 mgr.smithi049.pzczis (mgr.14180) 425 : 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-22T22:31:49.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:49 smithi049 bash[14150]: cluster 2024-02-22T22:31:48.551386+0000 mgr.smithi049.pzczis (mgr.14180) 426 : cluster [DBG] pgmap v345: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:31:50.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:49 smithi195 bash[18068]: cluster 2024-02-22T22:31:48.551386+0000 mgr.smithi049.pzczis (mgr.14180) 426 : cluster [DBG] pgmap v345: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:31:50.497 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:31:50.498 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:31:06.096095Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:31:06.096565Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:10.431706Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hxxcok on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\nDeploy daemon haproxy.nfs.foo.smithi195.hxxcok ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.519864Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gzxtkc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\nDeploy daemon haproxy.nfs.foo.smithi049.gzxtkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.523584Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ynznle on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:31:06.098400Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:31:06.097024Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:31:51.208 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:31:51.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:51 smithi049 bash[14150]: audit 2024-02-22T22:31:50.488424+0000 mgr.smithi049.pzczis (mgr.14180) 427 : audit [DBG] from='client.14732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:31:51.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:51 smithi049 bash[14150]: cluster 2024-02-22T22:31:50.552986+0000 mgr.smithi049.pzczis (mgr.14180) 428 : 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-22T22:31:52.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:51 smithi195 bash[18068]: audit 2024-02-22T22:31:50.488424+0000 mgr.smithi049.pzczis (mgr.14180) 427 : audit [DBG] from='client.14732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:31:52.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:51 smithi195 bash[18068]: cluster 2024-02-22T22:31:50.552986+0000 mgr.smithi049.pzczis (mgr.14180) 428 : 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-22T22:31:52.209 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:31:53.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:53 smithi049 bash[14150]: cluster 2024-02-22T22:31:52.554741+0000 mgr.smithi049.pzczis (mgr.14180) 429 : cluster [DBG] pgmap v347: 225 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-22T22:31:54.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:53 smithi195 bash[18068]: cluster 2024-02-22T22:31:52.554741+0000 mgr.smithi049.pzczis (mgr.14180) 429 : cluster [DBG] pgmap v347: 225 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-22T22:31:54.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:54 smithi049 bash[14150]: cluster 2024-02-22T22:31:54.555734+0000 mgr.smithi049.pzczis (mgr.14180) 430 : 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-22T22:31:55.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:54 smithi195 bash[18068]: cluster 2024-02-22T22:31:54.555734+0000 mgr.smithi049.pzczis (mgr.14180) 430 : 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-22T22:31:55.419 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:31:55.419 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:31:06.096095Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:31:06.096565Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:10.431706Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hxxcok on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\nDeploy daemon haproxy.nfs.foo.smithi195.hxxcok ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.519864Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gzxtkc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\nDeploy daemon haproxy.nfs.foo.smithi049.gzxtkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.523584Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ynznle on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:31:06.098400Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:31:06.097024Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:31:55.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:55 smithi049 bash[14150]: audit 2024-02-22T22:31:55.408472+0000 mgr.smithi049.pzczis (mgr.14180) 431 : audit [DBG] from='client.14736 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:31:56.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:55 smithi195 bash[18068]: audit 2024-02-22T22:31:55.408472+0000 mgr.smithi049.pzczis (mgr.14180) 431 : audit [DBG] from='client.14736 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:31:56.164 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:31:56.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:56 smithi049 bash[14150]: cluster 2024-02-22T22:31:56.557640+0000 mgr.smithi049.pzczis (mgr.14180) 432 : 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-22T22:31:57.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:56 smithi195 bash[18068]: cluster 2024-02-22T22:31:56.557640+0000 mgr.smithi049.pzczis (mgr.14180) 432 : 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-22T22:31:57.165 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:31:59.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:31:58 smithi195 bash[18068]: cluster 2024-02-22T22:31:58.559308+0000 mgr.smithi049.pzczis (mgr.14180) 433 : cluster [DBG] pgmap v350: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:31:59.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:31:58 smithi049 bash[14150]: cluster 2024-02-22T22:31:58.559308+0000 mgr.smithi049.pzczis (mgr.14180) 433 : cluster [DBG] pgmap v350: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:32:00.221 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:32:00.222 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:31:06.096095Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:31:06.096565Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:10.431706Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hxxcok on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\nDeploy daemon haproxy.nfs.foo.smithi195.hxxcok ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.519864Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gzxtkc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\nDeploy daemon haproxy.nfs.foo.smithi049.gzxtkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.523584Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ynznle on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:31:06.098400Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:31:06.097024Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:32:00.947 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:32:01.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:01 smithi049 bash[14150]: audit 2024-02-22T22:32:00.210846+0000 mgr.smithi049.pzczis (mgr.14180) 434 : audit [DBG] from='client.14740 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:32:01.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:01 smithi049 bash[14150]: cluster 2024-02-22T22:32:00.560373+0000 mgr.smithi049.pzczis (mgr.14180) 435 : 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-22T22:32:01.948 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:32:02.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:01 smithi195 bash[18068]: audit 2024-02-22T22:32:00.210846+0000 mgr.smithi049.pzczis (mgr.14180) 434 : audit [DBG] from='client.14740 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:32:02.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:01 smithi195 bash[18068]: cluster 2024-02-22T22:32:00.560373+0000 mgr.smithi049.pzczis (mgr.14180) 435 : 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-22T22:32:03.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:03 smithi049 bash[14150]: cluster 2024-02-22T22:32:02.562213+0000 mgr.smithi049.pzczis (mgr.14180) 436 : cluster [DBG] pgmap v352: 225 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-22T22:32:04.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:03 smithi195 bash[18068]: cluster 2024-02-22T22:32:02.562213+0000 mgr.smithi049.pzczis (mgr.14180) 436 : cluster [DBG] pgmap v352: 225 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-22T22:32:04.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:04 smithi049 bash[14150]: cluster 2024-02-22T22:32:04.563531+0000 mgr.smithi049.pzczis (mgr.14180) 437 : 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-22T22:32:04.943 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:32:04.943 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:31:06.096095Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:31:06.096565Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:10.431706Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hxxcok on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\nDeploy daemon haproxy.nfs.foo.smithi195.hxxcok ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.519864Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gzxtkc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\nDeploy daemon haproxy.nfs.foo.smithi049.gzxtkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.523584Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ynznle on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:31:06.098400Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:31:06.097024Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:32:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:04 smithi195 bash[18068]: cluster 2024-02-22T22:32:04.563531+0000 mgr.smithi049.pzczis (mgr.14180) 437 : 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-22T22:32:05.649 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:32:05.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:05 smithi049 bash[14150]: audit 2024-02-22T22:32:04.933541+0000 mgr.smithi049.pzczis (mgr.14180) 438 : audit [DBG] from='client.14744 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:32:06.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:05 smithi195 bash[18068]: audit 2024-02-22T22:32:04.933541+0000 mgr.smithi049.pzczis (mgr.14180) 438 : audit [DBG] from='client.14744 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:32:06.652 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:32:06.859 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:06 smithi049 bash[14150]: cluster 2024-02-22T22:32:06.565602+0000 mgr.smithi049.pzczis (mgr.14180) 439 : 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-22T22:32:07.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:06 smithi195 bash[18068]: cluster 2024-02-22T22:32:06.565602+0000 mgr.smithi049.pzczis (mgr.14180) 439 : 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-22T22:32:09.787 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:32:09.787 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:31:06.096095Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:31:06.096565Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:10.431706Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hxxcok on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\nDeploy daemon haproxy.nfs.foo.smithi195.hxxcok ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.519864Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gzxtkc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\nDeploy daemon haproxy.nfs.foo.smithi049.gzxtkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.523584Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ynznle on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:31:06.098400Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:31:06.097024Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:32:09.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:09 smithi049 bash[14150]: cluster 2024-02-22T22:32:08.567281+0000 mgr.smithi049.pzczis (mgr.14180) 440 : 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-22T22:32:10.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:09 smithi195 bash[18068]: cluster 2024-02-22T22:32:08.567281+0000 mgr.smithi049.pzczis (mgr.14180) 440 : 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-22T22:32:10.563 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:32:10.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:10 smithi049 bash[14150]: audit 2024-02-22T22:32:09.782827+0000 mgr.smithi049.pzczis (mgr.14180) 441 : audit [DBG] from='client.14748 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:32:10.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:10 smithi049 bash[14150]: cluster 2024-02-22T22:32:10.568925+0000 mgr.smithi049.pzczis (mgr.14180) 442 : cluster [DBG] pgmap v356: 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-22T22:32:11.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:10 smithi195 bash[18068]: audit 2024-02-22T22:32:09.782827+0000 mgr.smithi049.pzczis (mgr.14180) 441 : audit [DBG] from='client.14748 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:32:11.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:10 smithi195 bash[18068]: cluster 2024-02-22T22:32:10.568925+0000 mgr.smithi049.pzczis (mgr.14180) 442 : cluster [DBG] pgmap v356: 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-22T22:32:11.564 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:32:13.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:13 smithi049 bash[14150]: cluster 2024-02-22T22:32:12.570225+0000 mgr.smithi049.pzczis (mgr.14180) 443 : cluster [DBG] pgmap v357: 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-22T22:32:14.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:13 smithi195 bash[18068]: cluster 2024-02-22T22:32:12.570225+0000 mgr.smithi049.pzczis (mgr.14180) 443 : cluster [DBG] pgmap v357: 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-22T22:32:14.488 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:32:14.489 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:31:06.096095Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:31:06.096565Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:10.431706Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hxxcok on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\nDeploy daemon haproxy.nfs.foo.smithi195.hxxcok ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.519864Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gzxtkc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\nDeploy daemon haproxy.nfs.foo.smithi049.gzxtkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.523584Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ynznle on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:31:06.098400Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:31:06.097024Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:32:14.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:14 smithi049 bash[14150]: audit 2024-02-22T22:32:14.480486+0000 mgr.smithi049.pzczis (mgr.14180) 444 : audit [DBG] from='client.14752 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:32:14.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:14 smithi049 bash[14150]: audit 2024-02-22T22:32:14.530700+0000 mon.smithi049 (mon.0) 791 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:32:14.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:14 smithi049 bash[14150]: cluster 2024-02-22T22:32:14.570977+0000 mgr.smithi049.pzczis (mgr.14180) 445 : cluster [DBG] pgmap v358: 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-22T22:32:15.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:14 smithi195 bash[18068]: audit 2024-02-22T22:32:14.480486+0000 mgr.smithi049.pzczis (mgr.14180) 444 : audit [DBG] from='client.14752 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:32:15.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:14 smithi195 bash[18068]: audit 2024-02-22T22:32:14.530700+0000 mon.smithi049 (mon.0) 791 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:32:15.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:14 smithi195 bash[18068]: cluster 2024-02-22T22:32:14.570977+0000 mgr.smithi049.pzczis (mgr.14180) 445 : cluster [DBG] pgmap v358: 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-22T22:32:15.252 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:32:16.254 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:32:16.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:16 smithi049 bash[14150]: cluster 2024-02-22T22:32:16.572983+0000 mgr.smithi049.pzczis (mgr.14180) 446 : cluster [DBG] pgmap v359: 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-22T22:32:17.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:16 smithi195 bash[18068]: cluster 2024-02-22T22:32:16.572983+0000 mgr.smithi049.pzczis (mgr.14180) 446 : cluster [DBG] pgmap v359: 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-22T22:32:18.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:18 smithi049 bash[14150]: cluster 2024-02-22T22:32:18.574482+0000 mgr.smithi049.pzczis (mgr.14180) 447 : cluster [DBG] pgmap v360: 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-22T22:32:19.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:18 smithi195 bash[18068]: cluster 2024-02-22T22:32:18.574482+0000 mgr.smithi049.pzczis (mgr.14180) 447 : cluster [DBG] pgmap v360: 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-22T22:32:19.442 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:32:19.443 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:31:06.096095Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:31:06.096565Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:10.431706Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hxxcok on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\nDeploy daemon haproxy.nfs.foo.smithi195.hxxcok ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.519864Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gzxtkc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\nDeploy daemon haproxy.nfs.foo.smithi049.gzxtkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.523584Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ynznle on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:31:06.098400Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:31:06.097024Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:32:19.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:19 smithi049 bash[14150]: audit 2024-02-22T22:32:19.438636+0000 mgr.smithi049.pzczis (mgr.14180) 448 : audit [DBG] from='client.14756 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:32:20.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:19 smithi195 bash[18068]: audit 2024-02-22T22:32:19.438636+0000 mgr.smithi049.pzczis (mgr.14180) 448 : audit [DBG] from='client.14756 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:32:20.229 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:32:21.229 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:32:21.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:21 smithi049 bash[14150]: audit 2024-02-22T22:32:20.508852+0000 mon.smithi049 (mon.0) 792 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:32:21.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:21 smithi049 bash[14150]: cluster 2024-02-22T22:32:20.576021+0000 mgr.smithi049.pzczis (mgr.14180) 449 : cluster [DBG] pgmap v361: 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-22T22:32:21.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:21 smithi049 bash[14150]: audit 2024-02-22T22:32:20.818766+0000 mon.smithi049 (mon.0) 793 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:32:21.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:21 smithi049 bash[14150]: audit 2024-02-22T22:32:20.820589+0000 mon.smithi049 (mon.0) 794 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:32:21.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:21 smithi049 bash[14150]: audit 2024-02-22T22:32:20.828598+0000 mon.smithi049 (mon.0) 795 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:32:21.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:21 smithi049 bash[14150]: audit 2024-02-22T22:32:20.837796+0000 mon.smithi049 (mon.0) 796 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:32:21.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:21 smithi049 bash[14150]: audit 2024-02-22T22:32:20.850530+0000 mon.smithi049 (mon.0) 797 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:32:21.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:21 smithi195 bash[18068]: audit 2024-02-22T22:32:20.508852+0000 mon.smithi049 (mon.0) 792 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:32:21.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:21 smithi195 bash[18068]: cluster 2024-02-22T22:32:20.576021+0000 mgr.smithi049.pzczis (mgr.14180) 449 : cluster [DBG] pgmap v361: 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-22T22:32:21.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:21 smithi195 bash[18068]: audit 2024-02-22T22:32:20.818766+0000 mon.smithi049 (mon.0) 793 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:32:21.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:21 smithi195 bash[18068]: audit 2024-02-22T22:32:20.820589+0000 mon.smithi049 (mon.0) 794 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:32:21.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:21 smithi195 bash[18068]: audit 2024-02-22T22:32:20.828598+0000 mon.smithi049 (mon.0) 795 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:32:21.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:21 smithi195 bash[18068]: audit 2024-02-22T22:32:20.837796+0000 mon.smithi049 (mon.0) 796 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:32:21.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:21 smithi195 bash[18068]: audit 2024-02-22T22:32:20.850530+0000 mon.smithi049 (mon.0) 797 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:32:22.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:22 smithi049 bash[14150]: cluster 2024-02-22T22:32:20.829738+0000 mgr.smithi049.pzczis (mgr.14180) 450 : cluster [DBG] pgmap v362: 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-22T22:32:22.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:22 smithi049 bash[14150]: cephadm 2024-02-22T22:32:20.854177+0000 mgr.smithi049.pzczis (mgr.14180) 451 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.rcfbtd on smithi195 2024-02-22T22:32:22.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:22 smithi049 bash[14150]: cluster 2024-02-22T22:32:21.504485+0000 mon.smithi049 (mon.0) 798 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:32:22.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:22 smithi049 bash[14150]: cluster 2024-02-22T22:32:21.504540+0000 mon.smithi049 (mon.0) 799 : cluster [INF] Cluster is now healthy 2024-02-22T22:32:22.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:22 smithi195 bash[18068]: cluster 2024-02-22T22:32:20.829738+0000 mgr.smithi049.pzczis (mgr.14180) 450 : cluster [DBG] pgmap v362: 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-22T22:32:22.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:22 smithi195 bash[18068]: cephadm 2024-02-22T22:32:20.854177+0000 mgr.smithi049.pzczis (mgr.14180) 451 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.rcfbtd on smithi195 2024-02-22T22:32:22.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:22 smithi195 bash[18068]: cluster 2024-02-22T22:32:21.504485+0000 mon.smithi049 (mon.0) 798 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:32:22.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:22 smithi195 bash[18068]: cluster 2024-02-22T22:32:21.504540+0000 mon.smithi049 (mon.0) 799 : cluster [INF] Cluster is now healthy 2024-02-22T22:32:23.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:23 smithi049 bash[14150]: audit 2024-02-22T22:32:22.650145+0000 mon.smithi049 (mon.0) 800 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:32:23.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:23 smithi049 bash[14150]: cluster 2024-02-22T22:32:22.830772+0000 mgr.smithi049.pzczis (mgr.14180) 452 : cluster [DBG] pgmap v363: 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-22T22:32:24.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:23 smithi195 bash[18068]: audit 2024-02-22T22:32:22.650145+0000 mon.smithi049 (mon.0) 800 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:32:24.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:23 smithi195 bash[18068]: cluster 2024-02-22T22:32:22.830772+0000 mgr.smithi049.pzczis (mgr.14180) 452 : cluster [DBG] pgmap v363: 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-22T22:32:24.427 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:32:24.427 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:59.129019Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.lxzmpo on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:10.431706Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hxxcok on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-hxxcok\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.hxxcok\nDeploy daemon haproxy.nfs.foo.smithi195.hxxcok ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.519864Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gzxtkc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gzxtkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gzxtkc\nDeploy daemon haproxy.nfs.foo.smithi049.gzxtkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:31:14.523584Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ynznle on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:32:24.769 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:24 smithi049 bash[14150]: audit 2024-02-22T22:32:24.417191+0000 mgr.smithi049.pzczis (mgr.14180) 453 : audit [DBG] from='client.14760 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:32:25.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:24 smithi195 bash[18068]: audit 2024-02-22T22:32:24.417191+0000 mgr.smithi049.pzczis (mgr.14180) 453 : audit [DBG] from='client.14760 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:32:25.147 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:32:25.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: cephadm 2024-02-22T22:32:24.770394+0000 mgr.smithi049.pzczis (mgr.14180) 454 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd 2024-02-22T22:32:25.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:32:25.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd 2024-02-22T22:32:25.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd 2024-02-22T22:32:25.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:32:25.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd 2024-02-22T22:32:25.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.rcfbtd ... 2024-02-22T22:32:25.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:32:25.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:32:25.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:32:25.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:32:25.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:32:25.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:32:25.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:32:25.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:32:25.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:32:25.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:32:25.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd 2024-02-22T22:32:25.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:32:25.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd 2024-02-22T22:32:25.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd 2024-02-22T22:32:25.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:32:25.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd 2024-02-22T22:32:25.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.rcfbtd ... 2024-02-22T22:32:25.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:32:25.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:32:25.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:32:25.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:32:25.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:32:25.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: cephadm 2024-02-22T22:32:24.770898+0000 mgr.smithi049.pzczis (mgr.14180) 455 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.rcfbtd 2024-02-22T22:32:25.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: audit 2024-02-22T22:32:24.771338+0000 mon.smithi049 (mon.0) 801 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.rcfbtd"}]: dispatch 2024-02-22T22:32:25.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: cephadm 2024-02-22T22:32:24.772836+0000 mgr.smithi049.pzczis (mgr.14180) 456 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.rcfbtd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd 2024-02-22T22:32:25.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:32:25.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd 2024-02-22T22:32:25.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd 2024-02-22T22:32:25.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:32:25.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd 2024-02-22T22:32:25.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.rcfbtd ... 2024-02-22T22:32:25.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:32:25.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:32:25.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:32:25.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:32:25.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:32:25.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: cephadm 2024-02-22T22:32:24.777345+0000 mgr.smithi049.pzczis (mgr.14180) 457 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.tsofhg on smithi049 2024-02-22T22:32:25.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:25 smithi049 bash[14150]: cluster 2024-02-22T22:32:24.831483+0000 mgr.smithi049.pzczis (mgr.14180) 458 : cluster [DBG] pgmap v364: 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-22T22:32:26.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: cephadm 2024-02-22T22:32:24.770394+0000 mgr.smithi049.pzczis (mgr.14180) 454 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd 2024-02-22T22:32:26.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:32:26.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd 2024-02-22T22:32:26.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd 2024-02-22T22:32:26.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:32:26.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd 2024-02-22T22:32:26.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.rcfbtd ... 2024-02-22T22:32:26.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:32:26.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:32:26.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:32:26.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:32:26.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:32:26.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:32:26.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:32:26.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:32:26.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:32:26.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:32:26.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd 2024-02-22T22:32:26.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:32:26.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd 2024-02-22T22:32:26.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd 2024-02-22T22:32:26.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:32:26.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd 2024-02-22T22:32:26.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.rcfbtd ... 2024-02-22T22:32:26.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:32:26.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:32:26.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:32:26.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:32:26.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:32:26.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: cephadm 2024-02-22T22:32:24.770898+0000 mgr.smithi049.pzczis (mgr.14180) 455 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.rcfbtd 2024-02-22T22:32:26.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: audit 2024-02-22T22:32:24.771338+0000 mon.smithi049 (mon.0) 801 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.rcfbtd"}]: dispatch 2024-02-22T22:32:26.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: cephadm 2024-02-22T22:32:24.772836+0000 mgr.smithi049.pzczis (mgr.14180) 456 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.rcfbtd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd 2024-02-22T22:32:26.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:32:26.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd 2024-02-22T22:32:26.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd 2024-02-22T22:32:26.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:32:26.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd 2024-02-22T22:32:26.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.rcfbtd ... 2024-02-22T22:32:26.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:32:26.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:32:26.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:32:26.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:32:26.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:32:26.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: cephadm 2024-02-22T22:32:24.777345+0000 mgr.smithi049.pzczis (mgr.14180) 457 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.tsofhg on smithi049 2024-02-22T22:32:26.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:25 smithi195 bash[18068]: cluster 2024-02-22T22:32:24.831483+0000 mgr.smithi049.pzczis (mgr.14180) 458 : cluster [DBG] pgmap v364: 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-22T22:32:26.148 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:32:28.153 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:27 smithi049 bash[14150]: cluster 2024-02-22T22:32:26.832608+0000 mgr.smithi049.pzczis (mgr.14180) 459 : cluster [DBG] pgmap v365: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 898 B/s rd, 99 B/s wr, 1 op/s 2024-02-22T22:32:28.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:27 smithi195 bash[18068]: cluster 2024-02-22T22:32:26.832608+0000 mgr.smithi049.pzczis (mgr.14180) 459 : cluster [DBG] pgmap v365: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 898 B/s rd, 99 B/s wr, 1 op/s 2024-02-22T22:32:29.497 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:32:29.497 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:24.772527Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.rcfbtd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\nDeploy daemon haproxy.nfs.foo.smithi195.rcfbtd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.915152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.tsofhg on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\nDeploy daemon haproxy.nfs.foo.smithi049.tsofhg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.916909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.izvrnj on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:32:29.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: cluster 2024-02-22T22:32:28.833547+0000 mgr.smithi049.pzczis (mgr.14180) 460 : cluster [DBG] pgmap v366: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 99 B/s wr, 1 op/s 2024-02-22T22:32:29.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: cephadm 2024-02-22T22:32:28.912659+0000 mgr.smithi049.pzczis (mgr.14180) 461 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg 2024-02-22T22:32:29.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:32:29.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg 2024-02-22T22:32:29.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg 2024-02-22T22:32:29.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:32:29.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg 2024-02-22T22:32:29.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.tsofhg ... 2024-02-22T22:32:29.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:32:29.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:32:29.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:32:29.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:32:29.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:32:29.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:32:29.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:32:29.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:32:29.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:32:29.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:32:29.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg 2024-02-22T22:32:29.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:32:29.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg 2024-02-22T22:32:29.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg 2024-02-22T22:32:29.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:32:29.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg 2024-02-22T22:32:29.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.tsofhg ... 2024-02-22T22:32:29.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:32:29.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:32:29.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:32:29.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:32:29.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:32:29.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: cephadm 2024-02-22T22:32:28.913172+0000 mgr.smithi049.pzczis (mgr.14180) 462 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.tsofhg 2024-02-22T22:32:29.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: audit 2024-02-22T22:32:28.913910+0000 mon.smithi049 (mon.0) 802 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.tsofhg"}]: dispatch 2024-02-22T22:32:29.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: cephadm 2024-02-22T22:32:28.915271+0000 mgr.smithi049.pzczis (mgr.14180) 463 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.tsofhg on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg 2024-02-22T22:32:29.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:32:29.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg 2024-02-22T22:32:29.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg 2024-02-22T22:32:29.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:32:29.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg 2024-02-22T22:32:29.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.tsofhg ... 2024-02-22T22:32:29.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:32:29.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:32:29.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:32:29.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:32:29.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:32:29.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: cephadm 2024-02-22T22:32:28.917005+0000 mgr.smithi049.pzczis (mgr.14180) 464 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.izvrnj on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:32:29.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: cephadm 2024-02-22T22:32:28.918481+0000 mgr.smithi049.pzczis (mgr.14180) 465 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:32:29.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: cluster 2024-02-22T22:32:28.919417+0000 mgr.smithi049.pzczis (mgr.14180) 466 : cluster [DBG] pgmap v367: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.7 KiB/s rd, 122 B/s wr, 1 op/s 2024-02-22T22:32:29.946 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:29 smithi049 bash[14150]: audit 2024-02-22T22:32:29.488891+0000 mgr.smithi049.pzczis (mgr.14180) 467 : audit [DBG] from='client.14764 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:32:30.271 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:32:30.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: cluster 2024-02-22T22:32:28.833547+0000 mgr.smithi049.pzczis (mgr.14180) 460 : cluster [DBG] pgmap v366: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 99 B/s wr, 1 op/s 2024-02-22T22:32:30.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: cephadm 2024-02-22T22:32:28.912659+0000 mgr.smithi049.pzczis (mgr.14180) 461 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg 2024-02-22T22:32:30.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:32:30.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg 2024-02-22T22:32:30.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg 2024-02-22T22:32:30.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:32:30.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg 2024-02-22T22:32:30.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.tsofhg ... 2024-02-22T22:32:30.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:32:30.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:32:30.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:32:30.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:32:30.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:32:30.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:32:30.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:32:30.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:32:30.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:32:30.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:32:30.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg 2024-02-22T22:32:30.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:32:30.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg 2024-02-22T22:32:30.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg 2024-02-22T22:32:30.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:32:30.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg 2024-02-22T22:32:30.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.tsofhg ... 2024-02-22T22:32:30.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:32:30.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:32:30.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:32:30.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:32:30.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:32:30.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: cephadm 2024-02-22T22:32:28.913172+0000 mgr.smithi049.pzczis (mgr.14180) 462 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.tsofhg 2024-02-22T22:32:30.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: audit 2024-02-22T22:32:28.913910+0000 mon.smithi049 (mon.0) 802 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.tsofhg"}]: dispatch 2024-02-22T22:32:30.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: cephadm 2024-02-22T22:32:28.915271+0000 mgr.smithi049.pzczis (mgr.14180) 463 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.tsofhg on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg 2024-02-22T22:32:30.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:32:30.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg 2024-02-22T22:32:30.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg 2024-02-22T22:32:30.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:32:30.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg 2024-02-22T22:32:30.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.tsofhg ... 2024-02-22T22:32:30.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:32:30.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:32:30.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:32:30.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:32:30.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:32:30.308 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: cephadm 2024-02-22T22:32:28.917005+0000 mgr.smithi049.pzczis (mgr.14180) 464 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.izvrnj on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:32:30.308 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: cephadm 2024-02-22T22:32:28.918481+0000 mgr.smithi049.pzczis (mgr.14180) 465 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:32:30.308 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: cluster 2024-02-22T22:32:28.919417+0000 mgr.smithi049.pzczis (mgr.14180) 466 : cluster [DBG] pgmap v367: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.7 KiB/s rd, 122 B/s wr, 1 op/s 2024-02-22T22:32:30.308 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:29 smithi195 bash[18068]: audit 2024-02-22T22:32:29.488891+0000 mgr.smithi049.pzczis (mgr.14180) 467 : audit [DBG] from='client.14764 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:32:31.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:30 smithi049 bash[14150]: cluster 2024-02-22T22:32:29.891360+0000 mon.smithi049 (mon.0) 803 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:32:31.272 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:32:31.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:30 smithi195 bash[18068]: cluster 2024-02-22T22:32:29.891360+0000 mon.smithi049 (mon.0) 803 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:32:32.519 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:32 smithi049 bash[14150]: cluster 2024-02-22T22:32:30.921377+0000 mgr.smithi049.pzczis (mgr.14180) 468 : cluster [DBG] pgmap v368: 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-22T22:32:32.520 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:32 smithi049 bash[14150]: audit 2024-02-22T22:32:31.269495+0000 mon.smithi049 (mon.0) 804 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:32:32.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:32 smithi195 bash[18068]: cluster 2024-02-22T22:32:30.921377+0000 mgr.smithi049.pzczis (mgr.14180) 468 : cluster [DBG] pgmap v368: 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-22T22:32:32.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:32 smithi195 bash[18068]: audit 2024-02-22T22:32:31.269495+0000 mon.smithi049 (mon.0) 804 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:32:34.340 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:32:34.340 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:24.772527Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.rcfbtd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\nDeploy daemon haproxy.nfs.foo.smithi195.rcfbtd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.915152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.tsofhg on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\nDeploy daemon haproxy.nfs.foo.smithi049.tsofhg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.916909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.izvrnj on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:32:34.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:34 smithi195 bash[18068]: cluster 2024-02-22T22:32:32.922908+0000 mgr.smithi049.pzczis (mgr.14180) 469 : cluster [DBG] pgmap v369: 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-22T22:32:34.555 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:34 smithi049 bash[14150]: cluster 2024-02-22T22:32:32.922908+0000 mgr.smithi049.pzczis (mgr.14180) 469 : cluster [DBG] pgmap v369: 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-22T22:32:35.137 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:32:35.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:35 smithi049 bash[14150]: audit 2024-02-22T22:32:34.335678+0000 mgr.smithi049.pzczis (mgr.14180) 470 : audit [DBG] from='client.14768 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:32:35.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:35 smithi195 bash[18068]: audit 2024-02-22T22:32:34.335678+0000 mgr.smithi049.pzczis (mgr.14180) 470 : audit [DBG] from='client.14768 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:32:36.138 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:32:36.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:36 smithi049 bash[14150]: cluster 2024-02-22T22:32:34.923954+0000 mgr.smithi049.pzczis (mgr.14180) 471 : cluster [DBG] pgmap v370: 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-22T22:32:36.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:36 smithi195 bash[18068]: cluster 2024-02-22T22:32:34.923954+0000 mgr.smithi049.pzczis (mgr.14180) 471 : cluster [DBG] pgmap v370: 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-22T22:32:38.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:38 smithi195 bash[18068]: cluster 2024-02-22T22:32:36.925881+0000 mgr.smithi049.pzczis (mgr.14180) 472 : cluster [DBG] pgmap v371: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 608 B/s rd, 0 op/s 2024-02-22T22:32:38.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:38 smithi195 bash[18068]: audit 2024-02-22T22:32:37.650843+0000 mon.smithi049 (mon.0) 805 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:32:38.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:38 smithi049 bash[14150]: cluster 2024-02-22T22:32:36.925881+0000 mgr.smithi049.pzczis (mgr.14180) 472 : cluster [DBG] pgmap v371: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 608 B/s rd, 0 op/s 2024-02-22T22:32:38.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:38 smithi049 bash[14150]: audit 2024-02-22T22:32:37.650843+0000 mon.smithi049 (mon.0) 805 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:32:39.154 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:32:39.154 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:24.772527Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.rcfbtd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\nDeploy daemon haproxy.nfs.foo.smithi195.rcfbtd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.915152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.tsofhg on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\nDeploy daemon haproxy.nfs.foo.smithi049.tsofhg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.916909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.izvrnj on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:32:39.955 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:32:40.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:40 smithi195 bash[18068]: cluster 2024-02-22T22:32:38.926843+0000 mgr.smithi049.pzczis (mgr.14180) 473 : cluster [DBG] pgmap v372: 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-22T22:32:40.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:40 smithi195 bash[18068]: audit 2024-02-22T22:32:39.144105+0000 mgr.smithi049.pzczis (mgr.14180) 474 : audit [DBG] from='client.14772 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:32:40.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:40 smithi049 bash[14150]: cluster 2024-02-22T22:32:38.926843+0000 mgr.smithi049.pzczis (mgr.14180) 473 : cluster [DBG] pgmap v372: 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-22T22:32:40.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:40 smithi049 bash[14150]: audit 2024-02-22T22:32:39.144105+0000 mgr.smithi049.pzczis (mgr.14180) 474 : audit [DBG] from='client.14772 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:32:40.956 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:32:42.371 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:42 smithi049 bash[14150]: cluster 2024-02-22T22:32:40.928646+0000 mgr.smithi049.pzczis (mgr.14180) 475 : cluster [DBG] pgmap v373: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:32:42.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:42 smithi195 bash[18068]: cluster 2024-02-22T22:32:40.928646+0000 mgr.smithi049.pzczis (mgr.14180) 475 : cluster [DBG] pgmap v373: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:32:44.139 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:32:44.139 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:24.772527Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.rcfbtd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\nDeploy daemon haproxy.nfs.foo.smithi195.rcfbtd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.915152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.tsofhg on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\nDeploy daemon haproxy.nfs.foo.smithi049.tsofhg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.916909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.izvrnj on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:32:44.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:44 smithi049 bash[14150]: cluster 2024-02-22T22:32:42.929732+0000 mgr.smithi049.pzczis (mgr.14180) 476 : cluster [DBG] pgmap v374: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:32:44.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:44 smithi195 bash[18068]: cluster 2024-02-22T22:32:42.929732+0000 mgr.smithi049.pzczis (mgr.14180) 476 : cluster [DBG] pgmap v374: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:32:44.865 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:32:45.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:45 smithi049 bash[14150]: audit 2024-02-22T22:32:44.128720+0000 mgr.smithi049.pzczis (mgr.14180) 477 : audit [DBG] from='client.14776 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:32:45.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:45 smithi195 bash[18068]: audit 2024-02-22T22:32:44.128720+0000 mgr.smithi049.pzczis (mgr.14180) 477 : audit [DBG] from='client.14776 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:32:45.865 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:32:46.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:46 smithi049 bash[14150]: cluster 2024-02-22T22:32:44.930776+0000 mgr.smithi049.pzczis (mgr.14180) 478 : cluster [DBG] pgmap v375: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:32:46.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:46 smithi195 bash[18068]: cluster 2024-02-22T22:32:44.930776+0000 mgr.smithi049.pzczis (mgr.14180) 478 : cluster [DBG] pgmap v375: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:32:48.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:48 smithi195 bash[18068]: cluster 2024-02-22T22:32:46.932565+0000 mgr.smithi049.pzczis (mgr.14180) 479 : cluster [DBG] pgmap v376: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:32:48.594 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:48 smithi049 bash[14150]: cluster 2024-02-22T22:32:46.932565+0000 mgr.smithi049.pzczis (mgr.14180) 479 : cluster [DBG] pgmap v376: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:32:48.974 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:32:48.974 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:24.772527Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.rcfbtd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\nDeploy daemon haproxy.nfs.foo.smithi195.rcfbtd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.915152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.tsofhg on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\nDeploy daemon haproxy.nfs.foo.smithi049.tsofhg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.916909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.izvrnj on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:32:49.747 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:32:50.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:50 smithi049 bash[14150]: cluster 2024-02-22T22:32:48.934108+0000 mgr.smithi049.pzczis (mgr.14180) 480 : 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-22T22:32:50.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:50 smithi049 bash[14150]: audit 2024-02-22T22:32:48.962760+0000 mgr.smithi049.pzczis (mgr.14180) 481 : audit [DBG] from='client.14780 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:32:50.747 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:32:50.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:50 smithi195 bash[18068]: cluster 2024-02-22T22:32:48.934108+0000 mgr.smithi049.pzczis (mgr.14180) 480 : 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-22T22:32:50.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:50 smithi195 bash[18068]: audit 2024-02-22T22:32:48.962760+0000 mgr.smithi049.pzczis (mgr.14180) 481 : audit [DBG] from='client.14780 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:32:52.647 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:52 smithi049 bash[14150]: cluster 2024-02-22T22:32:50.936813+0000 mgr.smithi049.pzczis (mgr.14180) 482 : 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-22T22:32:52.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:52 smithi195 bash[18068]: cluster 2024-02-22T22:32:50.936813+0000 mgr.smithi049.pzczis (mgr.14180) 482 : 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-22T22:32:53.880 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:32:53.880 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:24.772527Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.rcfbtd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\nDeploy daemon haproxy.nfs.foo.smithi195.rcfbtd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.915152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.tsofhg on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\nDeploy daemon haproxy.nfs.foo.smithi049.tsofhg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.916909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.izvrnj on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:32:54.629 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:54 smithi049 bash[14150]: cluster 2024-02-22T22:32:52.938522+0000 mgr.smithi049.pzczis (mgr.14180) 483 : cluster [DBG] pgmap v379: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:32:54.631 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:32:54.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:54 smithi195 bash[18068]: cluster 2024-02-22T22:32:52.938522+0000 mgr.smithi049.pzczis (mgr.14180) 483 : cluster [DBG] pgmap v379: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:32:55.631 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:32:55.645 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:55 smithi049 bash[14150]: audit 2024-02-22T22:32:53.871265+0000 mgr.smithi049.pzczis (mgr.14180) 484 : audit [DBG] from='client.14784 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:32:55.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:55 smithi195 bash[18068]: audit 2024-02-22T22:32:53.871265+0000 mgr.smithi049.pzczis (mgr.14180) 484 : audit [DBG] from='client.14784 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:32:56.629 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:56 smithi049 bash[14150]: cluster 2024-02-22T22:32:54.939576+0000 mgr.smithi049.pzczis (mgr.14180) 485 : 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-22T22:32:56.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:56 smithi195 bash[18068]: cluster 2024-02-22T22:32:54.939576+0000 mgr.smithi049.pzczis (mgr.14180) 485 : 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-22T22:32:58.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:32:58 smithi195 bash[18068]: cluster 2024-02-22T22:32:56.941047+0000 mgr.smithi049.pzczis (mgr.14180) 486 : cluster [DBG] pgmap v381: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:32:58.676 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:32:58.677 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:24.772527Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.rcfbtd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\nDeploy daemon haproxy.nfs.foo.smithi195.rcfbtd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.915152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.tsofhg on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\nDeploy daemon haproxy.nfs.foo.smithi049.tsofhg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.916909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.izvrnj on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:32:58.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:32:58 smithi049 bash[14150]: cluster 2024-02-22T22:32:56.941047+0000 mgr.smithi049.pzczis (mgr.14180) 486 : cluster [DBG] pgmap v381: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:32:59.447 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:33:00.448 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:33:00.649 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:00 smithi049 bash[14150]: audit 2024-02-22T22:32:58.668461+0000 mgr.smithi049.pzczis (mgr.14180) 487 : audit [DBG] from='client.14788 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:33:00.649 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:00 smithi049 bash[14150]: cluster 2024-02-22T22:32:58.942179+0000 mgr.smithi049.pzczis (mgr.14180) 488 : 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-22T22:33:00.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:00 smithi195 bash[18068]: audit 2024-02-22T22:32:58.668461+0000 mgr.smithi049.pzczis (mgr.14180) 487 : audit [DBG] from='client.14788 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:33:00.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:00 smithi195 bash[18068]: cluster 2024-02-22T22:32:58.942179+0000 mgr.smithi049.pzczis (mgr.14180) 488 : 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-22T22:33:02.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:02 smithi049 bash[14150]: cluster 2024-02-22T22:33:00.944165+0000 mgr.smithi049.pzczis (mgr.14180) 489 : 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-22T22:33:02.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:02 smithi195 bash[18068]: cluster 2024-02-22T22:33:00.944165+0000 mgr.smithi049.pzczis (mgr.14180) 489 : 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-22T22:33:03.530 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:33:03.530 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:24.772527Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.rcfbtd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\nDeploy daemon haproxy.nfs.foo.smithi195.rcfbtd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.915152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.tsofhg on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\nDeploy daemon haproxy.nfs.foo.smithi049.tsofhg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.916909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.izvrnj on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:33:04.279 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:33:04.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:04 smithi049 bash[14150]: cluster 2024-02-22T22:33:02.945875+0000 mgr.smithi049.pzczis (mgr.14180) 490 : cluster [DBG] pgmap v384: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:33:04.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:04 smithi049 bash[14150]: audit 2024-02-22T22:33:03.521151+0000 mgr.smithi049.pzczis (mgr.14180) 491 : audit [DBG] from='client.24599 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:33:04.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:04 smithi195 bash[18068]: cluster 2024-02-22T22:33:02.945875+0000 mgr.smithi049.pzczis (mgr.14180) 490 : cluster [DBG] pgmap v384: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:33:04.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:04 smithi195 bash[18068]: audit 2024-02-22T22:33:03.521151+0000 mgr.smithi049.pzczis (mgr.14180) 491 : audit [DBG] from='client.24599 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:33:05.280 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:33:06.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:06 smithi049 bash[14150]: cluster 2024-02-22T22:33:04.946940+0000 mgr.smithi049.pzczis (mgr.14180) 492 : 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-22T22:33:06.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:06 smithi195 bash[18068]: cluster 2024-02-22T22:33:04.946940+0000 mgr.smithi049.pzczis (mgr.14180) 492 : 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-22T22:33:08.368 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:33:08.369 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:24.772527Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.rcfbtd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\nDeploy daemon haproxy.nfs.foo.smithi195.rcfbtd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.915152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.tsofhg on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\nDeploy daemon haproxy.nfs.foo.smithi049.tsofhg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.916909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.izvrnj on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:33:08.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:08 smithi195 bash[18068]: cluster 2024-02-22T22:33:06.948829+0000 mgr.smithi049.pzczis (mgr.14180) 493 : cluster [DBG] pgmap v386: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:33:08.762 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:08 smithi049 bash[14150]: cluster 2024-02-22T22:33:06.948829+0000 mgr.smithi049.pzczis (mgr.14180) 493 : cluster [DBG] pgmap v386: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:33:09.118 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:33:09.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:09 smithi049 bash[14150]: audit 2024-02-22T22:33:08.359533+0000 mgr.smithi049.pzczis (mgr.14180) 494 : audit [DBG] from='client.14796 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:33:09.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:09 smithi195 bash[18068]: audit 2024-02-22T22:33:08.359533+0000 mgr.smithi049.pzczis (mgr.14180) 494 : audit [DBG] from='client.14796 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:33:10.119 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:33:10.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:10 smithi049 bash[14150]: cluster 2024-02-22T22:33:08.950472+0000 mgr.smithi049.pzczis (mgr.14180) 495 : 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-22T22:33:10.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:10 smithi195 bash[18068]: cluster 2024-02-22T22:33:08.950472+0000 mgr.smithi049.pzczis (mgr.14180) 495 : 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-22T22:33:12.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:12 smithi049 bash[14150]: cluster 2024-02-22T22:33:10.952331+0000 mgr.smithi049.pzczis (mgr.14180) 496 : 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-22T22:33:12.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:12 smithi195 bash[18068]: cluster 2024-02-22T22:33:10.952331+0000 mgr.smithi049.pzczis (mgr.14180) 496 : 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-22T22:33:13.329 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:33:13.329 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:24.772527Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.rcfbtd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\nDeploy daemon haproxy.nfs.foo.smithi195.rcfbtd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.915152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.tsofhg on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\nDeploy daemon haproxy.nfs.foo.smithi049.tsofhg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.916909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.izvrnj on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:33:14.003 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:33:14.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:14 smithi049 bash[14150]: cluster 2024-02-22T22:33:12.954265+0000 mgr.smithi049.pzczis (mgr.14180) 497 : cluster [DBG] pgmap v389: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:33:14.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:14 smithi049 bash[14150]: audit 2024-02-22T22:33:13.321047+0000 mgr.smithi049.pzczis (mgr.14180) 498 : audit [DBG] from='client.14800 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:33:14.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:14 smithi195 bash[18068]: cluster 2024-02-22T22:33:12.954265+0000 mgr.smithi049.pzczis (mgr.14180) 497 : cluster [DBG] pgmap v389: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:33:14.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:14 smithi195 bash[18068]: audit 2024-02-22T22:33:13.321047+0000 mgr.smithi049.pzczis (mgr.14180) 498 : audit [DBG] from='client.14800 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:33:15.004 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:33:16.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:16 smithi049 bash[14150]: cluster 2024-02-22T22:33:14.955318+0000 mgr.smithi049.pzczis (mgr.14180) 499 : 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-22T22:33:16.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:16 smithi195 bash[18068]: cluster 2024-02-22T22:33:14.955318+0000 mgr.smithi049.pzczis (mgr.14180) 499 : 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-22T22:33:18.110 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:33:18.111 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:24.772527Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.rcfbtd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\nDeploy daemon haproxy.nfs.foo.smithi195.rcfbtd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.915152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.tsofhg on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\nDeploy daemon haproxy.nfs.foo.smithi049.tsofhg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.916909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.izvrnj on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:33:18.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:18 smithi195 bash[18068]: cluster 2024-02-22T22:33:16.957270+0000 mgr.smithi049.pzczis (mgr.14180) 500 : cluster [DBG] pgmap v391: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:33:18.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:18 smithi049 bash[14150]: cluster 2024-02-22T22:33:16.957270+0000 mgr.smithi049.pzczis (mgr.14180) 500 : cluster [DBG] pgmap v391: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:33:18.903 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:33:19.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:19 smithi195 bash[18068]: audit 2024-02-22T22:33:18.102645+0000 mgr.smithi049.pzczis (mgr.14180) 501 : audit [DBG] from='client.14804 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:33:19.904 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:33:19.918 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:19 smithi049 bash[14150]: audit 2024-02-22T22:33:18.102645+0000 mgr.smithi049.pzczis (mgr.14180) 501 : audit [DBG] from='client.14804 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:33:20.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:20 smithi195 bash[18068]: cluster 2024-02-22T22:33:18.958960+0000 mgr.smithi049.pzczis (mgr.14180) 502 : 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-22T22:33:20.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:20 smithi049 bash[14150]: cluster 2024-02-22T22:33:18.958960+0000 mgr.smithi049.pzczis (mgr.14180) 502 : 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-22T22:33:22.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:22 smithi195 bash[18068]: cluster 2024-02-22T22:33:20.960404+0000 mgr.smithi049.pzczis (mgr.14180) 503 : 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-22T22:33:22.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:22 smithi049 bash[14150]: cluster 2024-02-22T22:33:20.960404+0000 mgr.smithi049.pzczis (mgr.14180) 503 : 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-22T22:33:22.989 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:33:22.989 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:24.772527Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.rcfbtd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\nDeploy daemon haproxy.nfs.foo.smithi195.rcfbtd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.915152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.tsofhg on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\nDeploy daemon haproxy.nfs.foo.smithi049.tsofhg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.916909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.izvrnj on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:33:23.670 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:33:24.671 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:33:24.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:24 smithi195 bash[18068]: cluster 2024-02-22T22:33:22.961960+0000 mgr.smithi049.pzczis (mgr.14180) 504 : cluster [DBG] pgmap v394: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:33:24.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:24 smithi195 bash[18068]: audit 2024-02-22T22:33:22.979178+0000 mgr.smithi049.pzczis (mgr.14180) 505 : audit [DBG] from='client.14808 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:33:24.871 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:24 smithi049 bash[14150]: cluster 2024-02-22T22:33:22.961960+0000 mgr.smithi049.pzczis (mgr.14180) 504 : cluster [DBG] pgmap v394: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:33:24.871 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:24 smithi049 bash[14150]: audit 2024-02-22T22:33:22.979178+0000 mgr.smithi049.pzczis (mgr.14180) 505 : audit [DBG] from='client.14808 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:33:26.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:26 smithi195 bash[18068]: cluster 2024-02-22T22:33:24.963014+0000 mgr.smithi049.pzczis (mgr.14180) 506 : 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-22T22:33:26.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:26 smithi049 bash[14150]: cluster 2024-02-22T22:33:24.963014+0000 mgr.smithi049.pzczis (mgr.14180) 506 : 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-22T22:33:27.899 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:33:27.899 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:24.772527Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.rcfbtd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\nDeploy daemon haproxy.nfs.foo.smithi195.rcfbtd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.915152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.tsofhg on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\nDeploy daemon haproxy.nfs.foo.smithi049.tsofhg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.916909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.izvrnj on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:33:28.599 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:33:28.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:28 smithi195 bash[18068]: cluster 2024-02-22T22:33:26.964852+0000 mgr.smithi049.pzczis (mgr.14180) 507 : cluster [DBG] pgmap v396: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:33:28.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:28 smithi049 bash[14150]: cluster 2024-02-22T22:33:26.964852+0000 mgr.smithi049.pzczis (mgr.14180) 507 : cluster [DBG] pgmap v396: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:33:29.600 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:33:29.801 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:29 smithi049 bash[14150]: audit 2024-02-22T22:33:27.889374+0000 mgr.smithi049.pzczis (mgr.14180) 508 : audit [DBG] from='client.14812 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:33:29.801 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:29 smithi049 bash[14150]: audit 2024-02-22T22:33:28.923432+0000 mon.smithi049 (mon.0) 806 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:33:29.801 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:29 smithi049 bash[14150]: audit 2024-02-22T22:33:29.201583+0000 mon.smithi049 (mon.0) 807 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:33:29.876 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:29 smithi195 bash[18068]: audit 2024-02-22T22:33:27.889374+0000 mgr.smithi049.pzczis (mgr.14180) 508 : audit [DBG] from='client.14812 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:33:29.876 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:29 smithi195 bash[18068]: audit 2024-02-22T22:33:28.923432+0000 mon.smithi049 (mon.0) 806 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:33:29.876 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:29 smithi195 bash[18068]: audit 2024-02-22T22:33:29.201583+0000 mon.smithi049 (mon.0) 807 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:33:30.780 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:30 smithi049 bash[14150]: cluster 2024-02-22T22:33:28.966246+0000 mgr.smithi049.pzczis (mgr.14180) 509 : 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-22T22:33:30.781 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:30 smithi049 bash[14150]: audit 2024-02-22T22:33:29.478560+0000 mon.smithi049 (mon.0) 808 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:33:30.781 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:30 smithi049 bash[14150]: audit 2024-02-22T22:33:29.483168+0000 mon.smithi049 (mon.0) 809 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:33:30.781 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:30 smithi049 bash[14150]: audit 2024-02-22T22:33:29.488982+0000 mon.smithi049 (mon.0) 810 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:33:30.781 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:30 smithi049 bash[14150]: cluster 2024-02-22T22:33:29.489896+0000 mgr.smithi049.pzczis (mgr.14180) 510 : cluster [DBG] pgmap v398: 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-22T22:33:30.781 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:30 smithi049 bash[14150]: audit 2024-02-22T22:33:29.496198+0000 mon.smithi049 (mon.0) 811 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:33:30.781 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:30 smithi049 bash[14150]: audit 2024-02-22T22:33:29.511115+0000 mon.smithi049 (mon.0) 812 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:33:30.781 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:30 smithi049 bash[14150]: cephadm 2024-02-22T22:33:29.515624+0000 mgr.smithi049.pzczis (mgr.14180) 511 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.pkomyd on smithi195 2024-02-22T22:33:30.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:30 smithi195 bash[18068]: cluster 2024-02-22T22:33:28.966246+0000 mgr.smithi049.pzczis (mgr.14180) 509 : 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-22T22:33:30.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:30 smithi195 bash[18068]: audit 2024-02-22T22:33:29.478560+0000 mon.smithi049 (mon.0) 808 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:33:30.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:30 smithi195 bash[18068]: audit 2024-02-22T22:33:29.483168+0000 mon.smithi049 (mon.0) 809 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:33:30.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:30 smithi195 bash[18068]: audit 2024-02-22T22:33:29.488982+0000 mon.smithi049 (mon.0) 810 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:33:30.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:30 smithi195 bash[18068]: cluster 2024-02-22T22:33:29.489896+0000 mgr.smithi049.pzczis (mgr.14180) 510 : cluster [DBG] pgmap v398: 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-22T22:33:30.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:30 smithi195 bash[18068]: audit 2024-02-22T22:33:29.496198+0000 mon.smithi049 (mon.0) 811 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:33:30.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:30 smithi195 bash[18068]: audit 2024-02-22T22:33:29.511115+0000 mon.smithi049 (mon.0) 812 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:33:30.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:30 smithi195 bash[18068]: cephadm 2024-02-22T22:33:29.515624+0000 mgr.smithi049.pzczis (mgr.14180) 511 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.pkomyd on smithi195 2024-02-22T22:33:31.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:31 smithi195 bash[18068]: cluster 2024-02-22T22:33:30.490927+0000 mon.smithi049 (mon.0) 813 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:33:31.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:31 smithi195 bash[18068]: cluster 2024-02-22T22:33:30.491029+0000 mon.smithi049 (mon.0) 814 : cluster [INF] Cluster is now healthy 2024-02-22T22:33:31.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:31 smithi049 bash[14150]: cluster 2024-02-22T22:33:30.490927+0000 mon.smithi049 (mon.0) 813 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:33:31.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:31 smithi049 bash[14150]: cluster 2024-02-22T22:33:30.491029+0000 mon.smithi049 (mon.0) 814 : cluster [INF] Cluster is now healthy 2024-02-22T22:33:32.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:32 smithi195 bash[18068]: cluster 2024-02-22T22:33:31.491516+0000 mgr.smithi049.pzczis (mgr.14180) 512 : cluster [DBG] pgmap v399: 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-22T22:33:32.860 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:33:32.860 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:31:14.525865Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zbgkuz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:24.772527Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.rcfbtd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-rcfbtd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.rcfbtd\nDeploy daemon haproxy.nfs.foo.smithi195.rcfbtd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.915152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.tsofhg on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-tsofhg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.tsofhg\nDeploy daemon haproxy.nfs.foo.smithi049.tsofhg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:32:28.916909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.izvrnj on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:33:32.891 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:32 smithi049 bash[14150]: cluster 2024-02-22T22:33:31.491516+0000 mgr.smithi049.pzczis (mgr.14180) 512 : cluster [DBG] pgmap v399: 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-22T22:33:33.590 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:33:34.591 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:33:34.791 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: audit 2024-02-22T22:33:32.851741+0000 mgr.smithi049.pzczis (mgr.14180) 513 : audit [DBG] from='client.14816 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:33:34.791 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: cluster 2024-02-22T22:33:33.492914+0000 mgr.smithi049.pzczis (mgr.14180) 514 : cluster [DBG] pgmap v400: 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-22T22:33:34.791 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: cephadm 2024-02-22T22:33:33.519465+0000 mgr.smithi049.pzczis (mgr.14180) 515 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd 2024-02-22T22:33:34.791 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:33:34.791 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd 2024-02-22T22:33:34.791 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd 2024-02-22T22:33:34.791 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:33:34.791 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd 2024-02-22T22:33:34.791 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.pkomyd ... 2024-02-22T22:33:34.791 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:33:34.791 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:33:34.792 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:33:34.792 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:33:34.792 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:33:34.792 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:33:34.792 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:33:34.792 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:33:34.792 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:33:34.792 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:33:34.792 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd 2024-02-22T22:33:34.792 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:33:34.792 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd 2024-02-22T22:33:34.792 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd 2024-02-22T22:33:34.792 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:33:34.792 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd 2024-02-22T22:33:34.792 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.pkomyd ... 2024-02-22T22:33:34.793 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:33:34.793 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:33:34.793 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:33:34.793 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:33:34.793 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:33:34.793 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: cephadm 2024-02-22T22:33:33.519699+0000 mgr.smithi049.pzczis (mgr.14180) 516 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.pkomyd 2024-02-22T22:33:34.793 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: audit 2024-02-22T22:33:33.520191+0000 mon.smithi049 (mon.0) 815 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.pkomyd"}]: dispatch 2024-02-22T22:33:34.793 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: cephadm 2024-02-22T22:33:33.521419+0000 mgr.smithi049.pzczis (mgr.14180) 517 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.pkomyd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd 2024-02-22T22:33:34.793 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:33:34.793 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd 2024-02-22T22:33:34.793 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd 2024-02-22T22:33:34.793 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:33:34.793 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd 2024-02-22T22:33:34.793 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.pkomyd ... 2024-02-22T22:33:34.793 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:33:34.793 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:33:34.794 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:33:34.794 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:33:34.794 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:33:34.794 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:34 smithi049 bash[14150]: cephadm 2024-02-22T22:33:33.523669+0000 mgr.smithi049.pzczis (mgr.14180) 518 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.pqoiak on smithi049 2024-02-22T22:33:34.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: audit 2024-02-22T22:33:32.851741+0000 mgr.smithi049.pzczis (mgr.14180) 513 : audit [DBG] from='client.14816 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:33:34.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: cluster 2024-02-22T22:33:33.492914+0000 mgr.smithi049.pzczis (mgr.14180) 514 : cluster [DBG] pgmap v400: 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-22T22:33:34.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: cephadm 2024-02-22T22:33:33.519465+0000 mgr.smithi049.pzczis (mgr.14180) 515 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd 2024-02-22T22:33:34.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:33:34.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd 2024-02-22T22:33:34.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd 2024-02-22T22:33:34.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:33:34.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd 2024-02-22T22:33:34.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.pkomyd ... 2024-02-22T22:33:34.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:33:34.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:33:34.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:33:34.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:33:34.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:33:34.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:33:34.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:33:34.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:33:34.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:33:34.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:33:34.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd 2024-02-22T22:33:34.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:33:34.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd 2024-02-22T22:33:34.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd 2024-02-22T22:33:34.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:33:34.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd 2024-02-22T22:33:34.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.pkomyd ... 2024-02-22T22:33:34.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:33:34.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:33:34.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:33:34.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:33:34.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:33:34.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: cephadm 2024-02-22T22:33:33.519699+0000 mgr.smithi049.pzczis (mgr.14180) 516 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.pkomyd 2024-02-22T22:33:34.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: audit 2024-02-22T22:33:33.520191+0000 mon.smithi049 (mon.0) 815 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.pkomyd"}]: dispatch 2024-02-22T22:33:34.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: cephadm 2024-02-22T22:33:33.521419+0000 mgr.smithi049.pzczis (mgr.14180) 517 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.pkomyd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd 2024-02-22T22:33:34.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:33:34.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd 2024-02-22T22:33:34.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd 2024-02-22T22:33:34.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:33:34.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd 2024-02-22T22:33:34.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.pkomyd ... 2024-02-22T22:33:34.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:33:34.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:33:34.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:33:34.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:33:34.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:33:34.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:34 smithi195 bash[18068]: cephadm 2024-02-22T22:33:33.523669+0000 mgr.smithi049.pzczis (mgr.14180) 518 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.pqoiak on smithi049 2024-02-22T22:33:36.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:36 smithi049 bash[14150]: cluster 2024-02-22T22:33:35.494284+0000 mgr.smithi049.pzczis (mgr.14180) 519 : cluster [DBG] pgmap v401: 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-22T22:33:36.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:36 smithi195 bash[18068]: cluster 2024-02-22T22:33:35.494284+0000 mgr.smithi049.pzczis (mgr.14180) 519 : cluster [DBG] pgmap v401: 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-22T22:33:37.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:37 smithi049 bash[14150]: audit 2024-02-22T22:33:37.412712+0000 mon.smithi049 (mon.0) 816 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.pqoiak"}]: dispatch 2024-02-22T22:33:37.788 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:33:37.789 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:33.521263Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pkomyd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\nDeploy daemon haproxy.nfs.foo.smithi195.pkomyd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.413828Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pqoiak on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\nDeploy daemon haproxy.nfs.foo.smithi049.pqoiak ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.416051Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.domiyx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:33:37.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:37 smithi195 bash[18068]: audit 2024-02-22T22:33:37.412712+0000 mon.smithi049 (mon.0) 816 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.pqoiak"}]: dispatch 2024-02-22T22:33:38.625 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:33:38.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: cephadm 2024-02-22T22:33:37.411852+0000 mgr.smithi049.pzczis (mgr.14180) 520 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak 2024-02-22T22:33:38.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:33:38.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak 2024-02-22T22:33:38.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak 2024-02-22T22:33:38.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:33:38.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak 2024-02-22T22:33:38.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.pqoiak ... 2024-02-22T22:33:38.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:33:38.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:33:38.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:33:38.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:33:38.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:33:38.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:33:38.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:33:38.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:33:38.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:33:38.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:33:38.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak 2024-02-22T22:33:38.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:33:38.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak 2024-02-22T22:33:38.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak 2024-02-22T22:33:38.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:33:38.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak 2024-02-22T22:33:38.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.pqoiak ... 2024-02-22T22:33:38.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:33:38.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:33:38.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:33:38.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:33:38.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:33:38.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: cephadm 2024-02-22T22:33:37.412139+0000 mgr.smithi049.pzczis (mgr.14180) 521 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.pqoiak 2024-02-22T22:33:38.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: cephadm 2024-02-22T22:33:37.413980+0000 mgr.smithi049.pzczis (mgr.14180) 522 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.pqoiak on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak 2024-02-22T22:33:38.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:33:38.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak 2024-02-22T22:33:38.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak 2024-02-22T22:33:38.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:33:38.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak 2024-02-22T22:33:38.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.pqoiak ... 2024-02-22T22:33:38.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:33:38.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:33:38.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:33:38.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:33:38.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:33:38.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: cephadm 2024-02-22T22:33:37.416189+0000 mgr.smithi049.pzczis (mgr.14180) 523 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.domiyx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:33:38.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: cephadm 2024-02-22T22:33:37.418111+0000 mgr.smithi049.pzczis (mgr.14180) 524 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:33:38.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: cluster 2024-02-22T22:33:37.419984+0000 mgr.smithi049.pzczis (mgr.14180) 525 : cluster [DBG] pgmap v402: 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-22T22:33:38.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:38 smithi195 bash[18068]: cluster 2024-02-22T22:33:37.508883+0000 mon.smithi049 (mon.0) 817 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:33:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: cephadm 2024-02-22T22:33:37.411852+0000 mgr.smithi049.pzczis (mgr.14180) 520 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak 2024-02-22T22:33:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:33:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak 2024-02-22T22:33:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak 2024-02-22T22:33:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:33:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak 2024-02-22T22:33:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.pqoiak ... 2024-02-22T22:33:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:33:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:33:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:33:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:33:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:33:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:33:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:33:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:33:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:33:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:33:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak 2024-02-22T22:33:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:33:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak 2024-02-22T22:33:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak 2024-02-22T22:33:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:33:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak 2024-02-22T22:33:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.pqoiak ... 2024-02-22T22:33:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:33:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:33:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:33:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:33:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:33:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: cephadm 2024-02-22T22:33:37.412139+0000 mgr.smithi049.pzczis (mgr.14180) 521 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.pqoiak 2024-02-22T22:33:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: cephadm 2024-02-22T22:33:37.413980+0000 mgr.smithi049.pzczis (mgr.14180) 522 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.pqoiak on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak 2024-02-22T22:33:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:33:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak 2024-02-22T22:33:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak 2024-02-22T22:33:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:33:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak 2024-02-22T22:33:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.pqoiak ... 2024-02-22T22:33:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:33:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:33:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:33:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:33:38.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:33:38.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: cephadm 2024-02-22T22:33:37.416189+0000 mgr.smithi049.pzczis (mgr.14180) 523 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.domiyx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:33:38.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: cephadm 2024-02-22T22:33:37.418111+0000 mgr.smithi049.pzczis (mgr.14180) 524 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:33:38.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: cluster 2024-02-22T22:33:37.419984+0000 mgr.smithi049.pzczis (mgr.14180) 525 : cluster [DBG] pgmap v402: 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-22T22:33:38.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:38 smithi049 bash[14150]: cluster 2024-02-22T22:33:37.508883+0000 mon.smithi049 (mon.0) 817 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:33:39.625 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:33:39.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:39 smithi195 bash[18068]: audit 2024-02-22T22:33:37.780827+0000 mgr.smithi049.pzczis (mgr.14180) 526 : audit [DBG] from='client.14820 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:33:39.827 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:39 smithi049 bash[14150]: audit 2024-02-22T22:33:37.780827+0000 mgr.smithi049.pzczis (mgr.14180) 526 : audit [DBG] from='client.14820 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:33:40.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:40 smithi195 bash[18068]: cluster 2024-02-22T22:33:39.421215+0000 mgr.smithi049.pzczis (mgr.14180) 527 : cluster [DBG] pgmap v403: 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-22T22:33:40.862 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:40 smithi049 bash[14150]: cluster 2024-02-22T22:33:39.421215+0000 mgr.smithi049.pzczis (mgr.14180) 527 : cluster [DBG] pgmap v403: 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-22T22:33:42.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:42 smithi049 bash[14150]: audit 2024-02-22T22:33:41.322272+0000 mon.smithi049 (mon.0) 818 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:33:42.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:42 smithi049 bash[14150]: cluster 2024-02-22T22:33:41.423321+0000 mgr.smithi049.pzczis (mgr.14180) 528 : cluster [DBG] pgmap v404: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:33:42.715 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:33:42.715 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:33.521263Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pkomyd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\nDeploy daemon haproxy.nfs.foo.smithi195.pkomyd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.413828Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pqoiak on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\nDeploy daemon haproxy.nfs.foo.smithi049.pqoiak ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.416051Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.domiyx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:33:42.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:42 smithi195 bash[18068]: audit 2024-02-22T22:33:41.322272+0000 mon.smithi049 (mon.0) 818 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:33:42.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:42 smithi195 bash[18068]: cluster 2024-02-22T22:33:41.423321+0000 mgr.smithi049.pzczis (mgr.14180) 528 : cluster [DBG] pgmap v404: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:33:43.382 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:33:44.383 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:33:44.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:44 smithi049 bash[14150]: audit 2024-02-22T22:33:42.706655+0000 mgr.smithi049.pzczis (mgr.14180) 529 : audit [DBG] from='client.14824 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:33:44.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:44 smithi049 bash[14150]: cluster 2024-02-22T22:33:43.425023+0000 mgr.smithi049.pzczis (mgr.14180) 530 : cluster [DBG] pgmap v405: 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-22T22:33:44.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:44 smithi195 bash[18068]: audit 2024-02-22T22:33:42.706655+0000 mgr.smithi049.pzczis (mgr.14180) 529 : audit [DBG] from='client.14824 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:33:44.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:44 smithi195 bash[18068]: cluster 2024-02-22T22:33:43.425023+0000 mgr.smithi049.pzczis (mgr.14180) 530 : cluster [DBG] pgmap v405: 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-22T22:33:46.566 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:46 smithi049 bash[14150]: cluster 2024-02-22T22:33:45.426329+0000 mgr.smithi049.pzczis (mgr.14180) 531 : cluster [DBG] pgmap v406: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:33:46.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:46 smithi195 bash[18068]: cluster 2024-02-22T22:33:45.426329+0000 mgr.smithi049.pzczis (mgr.14180) 531 : cluster [DBG] pgmap v406: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:33:47.412 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:33:47.413 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:33.521263Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pkomyd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\nDeploy daemon haproxy.nfs.foo.smithi195.pkomyd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.413828Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pqoiak on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\nDeploy daemon haproxy.nfs.foo.smithi049.pqoiak ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.416051Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.domiyx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:33:48.185 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:33:48.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:48 smithi195 bash[18068]: audit 2024-02-22T22:33:47.408793+0000 mgr.smithi049.pzczis (mgr.14180) 532 : audit [DBG] from='client.14828 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:33:48.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:48 smithi195 bash[18068]: cluster 2024-02-22T22:33:47.428042+0000 mgr.smithi049.pzczis (mgr.14180) 533 : cluster [DBG] pgmap v407: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:33:48.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:48 smithi049 bash[14150]: audit 2024-02-22T22:33:47.408793+0000 mgr.smithi049.pzczis (mgr.14180) 532 : audit [DBG] from='client.14828 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:33:48.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:48 smithi049 bash[14150]: cluster 2024-02-22T22:33:47.428042+0000 mgr.smithi049.pzczis (mgr.14180) 533 : cluster [DBG] pgmap v407: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:33:49.185 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:33:50.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:50 smithi195 bash[18068]: cluster 2024-02-22T22:33:49.428926+0000 mgr.smithi049.pzczis (mgr.14180) 534 : cluster [DBG] pgmap v408: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:33:50.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:50 smithi049 bash[14150]: cluster 2024-02-22T22:33:49.428926+0000 mgr.smithi049.pzczis (mgr.14180) 534 : cluster [DBG] pgmap v408: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:33:52.286 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:33:52.286 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:33.521263Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pkomyd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\nDeploy daemon haproxy.nfs.foo.smithi195.pkomyd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.413828Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pqoiak on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\nDeploy daemon haproxy.nfs.foo.smithi049.pqoiak ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.416051Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.domiyx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:33:52.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:52 smithi049 bash[14150]: cluster 2024-02-22T22:33:51.429875+0000 mgr.smithi049.pzczis (mgr.14180) 535 : cluster [DBG] pgmap v409: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:33:52.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:52 smithi195 bash[18068]: cluster 2024-02-22T22:33:51.429875+0000 mgr.smithi049.pzczis (mgr.14180) 535 : cluster [DBG] pgmap v409: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:33:53.038 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:33:53.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:53 smithi195 bash[18068]: audit 2024-02-22T22:33:52.277520+0000 mgr.smithi049.pzczis (mgr.14180) 536 : audit [DBG] from='client.14832 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:33:53.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:53 smithi049 bash[14150]: audit 2024-02-22T22:33:52.277520+0000 mgr.smithi049.pzczis (mgr.14180) 536 : audit [DBG] from='client.14832 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:33:54.039 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:33:54.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:54 smithi195 bash[18068]: cluster 2024-02-22T22:33:53.431547+0000 mgr.smithi049.pzczis (mgr.14180) 537 : cluster [DBG] pgmap v410: 225 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-22T22:33:54.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:54 smithi049 bash[14150]: cluster 2024-02-22T22:33:53.431547+0000 mgr.smithi049.pzczis (mgr.14180) 537 : cluster [DBG] pgmap v410: 225 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-22T22:33:56.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:56 smithi195 bash[18068]: cluster 2024-02-22T22:33:55.433187+0000 mgr.smithi049.pzczis (mgr.14180) 538 : 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-22T22:33:56.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:56 smithi049 bash[14150]: cluster 2024-02-22T22:33:55.433187+0000 mgr.smithi049.pzczis (mgr.14180) 538 : 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-22T22:33:57.135 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:33:57.135 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:33.521263Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pkomyd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\nDeploy daemon haproxy.nfs.foo.smithi195.pkomyd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.413828Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pqoiak on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\nDeploy daemon haproxy.nfs.foo.smithi049.pqoiak ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.416051Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.domiyx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:33:57.878 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:33:58.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:58 smithi195 bash[18068]: audit 2024-02-22T22:33:57.127573+0000 mgr.smithi049.pzczis (mgr.14180) 539 : audit [DBG] from='client.14836 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:33:58.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:33:58 smithi195 bash[18068]: cluster 2024-02-22T22:33:57.434259+0000 mgr.smithi049.pzczis (mgr.14180) 540 : cluster [DBG] pgmap v412: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:33:58.878 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:33:58.891 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:58 smithi049 bash[14150]: audit 2024-02-22T22:33:57.127573+0000 mgr.smithi049.pzczis (mgr.14180) 539 : audit [DBG] from='client.14836 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:33:58.891 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:33:58 smithi049 bash[14150]: cluster 2024-02-22T22:33:57.434259+0000 mgr.smithi049.pzczis (mgr.14180) 540 : cluster [DBG] pgmap v412: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:34:00.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:00 smithi049 bash[14150]: cluster 2024-02-22T22:33:59.435474+0000 mgr.smithi049.pzczis (mgr.14180) 541 : 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-22T22:34:00.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:00 smithi195 bash[18068]: cluster 2024-02-22T22:33:59.435474+0000 mgr.smithi049.pzczis (mgr.14180) 541 : 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-22T22:34:02.087 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:34:02.088 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:33.521263Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pkomyd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\nDeploy daemon haproxy.nfs.foo.smithi195.pkomyd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.413828Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pqoiak on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\nDeploy daemon haproxy.nfs.foo.smithi049.pqoiak ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.416051Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.domiyx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:34:02.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:02 smithi049 bash[14150]: cluster 2024-02-22T22:34:01.437428+0000 mgr.smithi049.pzczis (mgr.14180) 542 : 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-22T22:34:02.781 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:34:02.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:02 smithi195 bash[18068]: cluster 2024-02-22T22:34:01.437428+0000 mgr.smithi049.pzczis (mgr.14180) 542 : 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-22T22:34:03.782 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:34:03.796 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:03 smithi049 bash[14150]: audit 2024-02-22T22:34:02.083522+0000 mgr.smithi049.pzczis (mgr.14180) 543 : audit [DBG] from='client.14840 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:34:03.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:03 smithi195 bash[18068]: audit 2024-02-22T22:34:02.083522+0000 mgr.smithi049.pzczis (mgr.14180) 543 : audit [DBG] from='client.14840 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:34:04.876 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:04 smithi049 bash[14150]: cluster 2024-02-22T22:34:03.439115+0000 mgr.smithi049.pzczis (mgr.14180) 544 : cluster [DBG] pgmap v415: 225 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-22T22:34:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:04 smithi195 bash[18068]: cluster 2024-02-22T22:34:03.439115+0000 mgr.smithi049.pzczis (mgr.14180) 544 : cluster [DBG] pgmap v415: 225 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-22T22:34:06.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:06 smithi049 bash[14150]: cluster 2024-02-22T22:34:05.440694+0000 mgr.smithi049.pzczis (mgr.14180) 545 : 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-22T22:34:06.806 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:34:06.807 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:33.521263Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pkomyd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\nDeploy daemon haproxy.nfs.foo.smithi195.pkomyd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.413828Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pqoiak on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\nDeploy daemon haproxy.nfs.foo.smithi049.pqoiak ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.416051Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.domiyx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:34:07.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:06 smithi195 bash[18068]: cluster 2024-02-22T22:34:05.440694+0000 mgr.smithi049.pzczis (mgr.14180) 545 : 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-22T22:34:07.557 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:34:08.558 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:34:08.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:08 smithi049 bash[14150]: audit 2024-02-22T22:34:06.797407+0000 mgr.smithi049.pzczis (mgr.14180) 546 : audit [DBG] from='client.14844 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:34:08.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:08 smithi049 bash[14150]: cluster 2024-02-22T22:34:07.442504+0000 mgr.smithi049.pzczis (mgr.14180) 547 : cluster [DBG] pgmap v417: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:34:09.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:08 smithi195 bash[18068]: audit 2024-02-22T22:34:06.797407+0000 mgr.smithi049.pzczis (mgr.14180) 546 : audit [DBG] from='client.14844 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:34:09.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:08 smithi195 bash[18068]: cluster 2024-02-22T22:34:07.442504+0000 mgr.smithi049.pzczis (mgr.14180) 547 : cluster [DBG] pgmap v417: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:34:10.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:10 smithi049 bash[14150]: cluster 2024-02-22T22:34:09.443837+0000 mgr.smithi049.pzczis (mgr.14180) 548 : 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-22T22:34:11.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:10 smithi195 bash[18068]: cluster 2024-02-22T22:34:09.443837+0000 mgr.smithi049.pzczis (mgr.14180) 548 : 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-22T22:34:11.647 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:34:11.648 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:33.521263Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pkomyd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\nDeploy daemon haproxy.nfs.foo.smithi195.pkomyd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.413828Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pqoiak on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\nDeploy daemon haproxy.nfs.foo.smithi049.pqoiak ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.416051Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.domiyx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:34:12.446 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:34:12.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:12 smithi049 bash[14150]: cluster 2024-02-22T22:34:11.445614+0000 mgr.smithi049.pzczis (mgr.14180) 549 : 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-22T22:34:12.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:12 smithi049 bash[14150]: audit 2024-02-22T22:34:11.639832+0000 mgr.smithi049.pzczis (mgr.14180) 550 : audit [DBG] from='client.14848 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:34:13.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:12 smithi195 bash[18068]: cluster 2024-02-22T22:34:11.445614+0000 mgr.smithi049.pzczis (mgr.14180) 549 : 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-22T22:34:13.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:12 smithi195 bash[18068]: audit 2024-02-22T22:34:11.639832+0000 mgr.smithi049.pzczis (mgr.14180) 550 : audit [DBG] from='client.14848 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:34:13.447 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:34:14.814 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:14 smithi049 bash[14150]: cluster 2024-02-22T22:34:13.447218+0000 mgr.smithi049.pzczis (mgr.14180) 551 : cluster [DBG] pgmap v420: 225 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-22T22:34:15.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:14 smithi195 bash[18068]: cluster 2024-02-22T22:34:13.447218+0000 mgr.smithi049.pzczis (mgr.14180) 551 : cluster [DBG] pgmap v420: 225 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-22T22:34:16.567 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:34:16.567 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:33.521263Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pkomyd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\nDeploy daemon haproxy.nfs.foo.smithi195.pkomyd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.413828Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pqoiak on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\nDeploy daemon haproxy.nfs.foo.smithi049.pqoiak ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.416051Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.domiyx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:34:16.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:16 smithi049 bash[14150]: cluster 2024-02-22T22:34:15.448765+0000 mgr.smithi049.pzczis (mgr.14180) 552 : 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-22T22:34:17.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:16 smithi195 bash[18068]: cluster 2024-02-22T22:34:15.448765+0000 mgr.smithi049.pzczis (mgr.14180) 552 : 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-22T22:34:17.332 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:34:17.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:17 smithi049 bash[14150]: audit 2024-02-22T22:34:16.559321+0000 mgr.smithi049.pzczis (mgr.14180) 553 : audit [DBG] from='client.14852 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:34:18.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:17 smithi195 bash[18068]: audit 2024-02-22T22:34:16.559321+0000 mgr.smithi049.pzczis (mgr.14180) 553 : audit [DBG] from='client.14852 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:34:18.333 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:34:18.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:18 smithi049 bash[14150]: cluster 2024-02-22T22:34:17.450586+0000 mgr.smithi049.pzczis (mgr.14180) 554 : cluster [DBG] pgmap v422: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:34:19.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:18 smithi195 bash[18068]: cluster 2024-02-22T22:34:17.450586+0000 mgr.smithi049.pzczis (mgr.14180) 554 : cluster [DBG] pgmap v422: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:34:20.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:20 smithi049 bash[14150]: cluster 2024-02-22T22:34:19.451743+0000 mgr.smithi049.pzczis (mgr.14180) 555 : 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-22T22:34:21.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:20 smithi195 bash[18068]: cluster 2024-02-22T22:34:19.451743+0000 mgr.smithi049.pzczis (mgr.14180) 555 : 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-22T22:34:21.564 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:34:21.564 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:33.521263Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pkomyd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\nDeploy daemon haproxy.nfs.foo.smithi195.pkomyd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.413828Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pqoiak on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\nDeploy daemon haproxy.nfs.foo.smithi049.pqoiak ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.416051Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.domiyx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:34:22.325 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:34:22.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:22 smithi049 bash[14150]: cluster 2024-02-22T22:34:21.453625+0000 mgr.smithi049.pzczis (mgr.14180) 556 : 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-22T22:34:22.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:22 smithi049 bash[14150]: audit 2024-02-22T22:34:21.555313+0000 mgr.smithi049.pzczis (mgr.14180) 557 : audit [DBG] from='client.14856 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:34:23.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:22 smithi195 bash[18068]: cluster 2024-02-22T22:34:21.453625+0000 mgr.smithi049.pzczis (mgr.14180) 556 : 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-22T22:34:23.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:22 smithi195 bash[18068]: audit 2024-02-22T22:34:21.555313+0000 mgr.smithi049.pzczis (mgr.14180) 557 : audit [DBG] from='client.14856 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:34:23.326 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:34:24.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:24 smithi049 bash[14150]: cluster 2024-02-22T22:34:23.455231+0000 mgr.smithi049.pzczis (mgr.14180) 558 : cluster [DBG] pgmap v425: 225 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-22T22:34:25.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:24 smithi195 bash[18068]: cluster 2024-02-22T22:34:23.455231+0000 mgr.smithi049.pzczis (mgr.14180) 558 : cluster [DBG] pgmap v425: 225 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-22T22:34:26.386 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:34:26.386 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:33.521263Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pkomyd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\nDeploy daemon haproxy.nfs.foo.smithi195.pkomyd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.413828Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pqoiak on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\nDeploy daemon haproxy.nfs.foo.smithi049.pqoiak ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.416051Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.domiyx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:34:26.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:26 smithi049 bash[14150]: cluster 2024-02-22T22:34:25.456707+0000 mgr.smithi049.pzczis (mgr.14180) 559 : 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-22T22:34:27.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:26 smithi195 bash[18068]: cluster 2024-02-22T22:34:25.456707+0000 mgr.smithi049.pzczis (mgr.14180) 559 : 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-22T22:34:27.179 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:34:27.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:27 smithi049 bash[14150]: audit 2024-02-22T22:34:26.377597+0000 mgr.smithi049.pzczis (mgr.14180) 560 : audit [DBG] from='client.14860 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:34:28.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:27 smithi195 bash[18068]: audit 2024-02-22T22:34:26.377597+0000 mgr.smithi049.pzczis (mgr.14180) 560 : audit [DBG] from='client.14860 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:34:28.181 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:34:28.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:28 smithi049 bash[14150]: cluster 2024-02-22T22:34:27.458517+0000 mgr.smithi049.pzczis (mgr.14180) 561 : cluster [DBG] pgmap v427: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:34:29.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:28 smithi195 bash[18068]: cluster 2024-02-22T22:34:27.458517+0000 mgr.smithi049.pzczis (mgr.14180) 561 : cluster [DBG] pgmap v427: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:34:30.937 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:30 smithi049 bash[14150]: cluster 2024-02-22T22:34:29.459329+0000 mgr.smithi049.pzczis (mgr.14180) 562 : 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-22T22:34:31.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:30 smithi195 bash[18068]: cluster 2024-02-22T22:34:29.459329+0000 mgr.smithi049.pzczis (mgr.14180) 562 : 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-22T22:34:31.366 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:34:31.366 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:33.521263Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pkomyd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\nDeploy daemon haproxy.nfs.foo.smithi195.pkomyd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.413828Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pqoiak on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\nDeploy daemon haproxy.nfs.foo.smithi049.pqoiak ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.416051Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.domiyx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:34:32.094 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:34:32.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:32 smithi049 bash[14150]: audit 2024-02-22T22:34:31.358774+0000 mgr.smithi049.pzczis (mgr.14180) 563 : audit [DBG] from='client.14864 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:34:32.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:32 smithi049 bash[14150]: cluster 2024-02-22T22:34:31.461325+0000 mgr.smithi049.pzczis (mgr.14180) 564 : 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-22T22:34:33.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:32 smithi195 bash[18068]: audit 2024-02-22T22:34:31.358774+0000 mgr.smithi049.pzczis (mgr.14180) 563 : audit [DBG] from='client.14864 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:34:33.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:32 smithi195 bash[18068]: cluster 2024-02-22T22:34:31.461325+0000 mgr.smithi049.pzczis (mgr.14180) 564 : 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-22T22:34:33.094 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:34:34.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:34 smithi049 bash[14150]: cluster 2024-02-22T22:34:33.463085+0000 mgr.smithi049.pzczis (mgr.14180) 565 : cluster [DBG] pgmap v430: 225 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-22T22:34:35.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:34 smithi195 bash[18068]: cluster 2024-02-22T22:34:33.463085+0000 mgr.smithi049.pzczis (mgr.14180) 565 : cluster [DBG] pgmap v430: 225 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-22T22:34:35.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:35 smithi049 bash[14150]: cluster 2024-02-22T22:34:35.463986+0000 mgr.smithi049.pzczis (mgr.14180) 566 : 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-22T22:34:36.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:35 smithi195 bash[18068]: cluster 2024-02-22T22:34:35.463986+0000 mgr.smithi049.pzczis (mgr.14180) 566 : 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-22T22:34:36.159 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:34:36.159 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:33.521263Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pkomyd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\nDeploy daemon haproxy.nfs.foo.smithi195.pkomyd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.413828Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pqoiak on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\nDeploy daemon haproxy.nfs.foo.smithi049.pqoiak ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.416051Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.domiyx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:34:36.896 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:36 smithi049 bash[14150]: audit 2024-02-22T22:34:36.155204+0000 mgr.smithi049.pzczis (mgr.14180) 567 : audit [DBG] from='client.14868 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:34:36.897 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:34:37.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:36 smithi195 bash[18068]: audit 2024-02-22T22:34:36.155204+0000 mgr.smithi049.pzczis (mgr.14180) 567 : audit [DBG] from='client.14868 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:34:37.898 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:34:37.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:37 smithi049 bash[14150]: audit 2024-02-22T22:34:37.423506+0000 mon.smithi049 (mon.0) 819 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:34:37.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:37 smithi049 bash[14150]: cluster 2024-02-22T22:34:37.465442+0000 mgr.smithi049.pzczis (mgr.14180) 568 : cluster [DBG] pgmap v432: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:34:38.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:37 smithi195 bash[18068]: audit 2024-02-22T22:34:37.423506+0000 mon.smithi049 (mon.0) 819 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:34:38.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:37 smithi195 bash[18068]: cluster 2024-02-22T22:34:37.465442+0000 mgr.smithi049.pzczis (mgr.14180) 568 : cluster [DBG] pgmap v432: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:34:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:38 smithi049 bash[14150]: audit 2024-02-22T22:34:37.739777+0000 mon.smithi049 (mon.0) 820 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:34:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:38 smithi049 bash[14150]: audit 2024-02-22T22:34:37.741369+0000 mon.smithi049 (mon.0) 821 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:34:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:38 smithi049 bash[14150]: audit 2024-02-22T22:34:37.749784+0000 mon.smithi049 (mon.0) 822 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:34:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:38 smithi049 bash[14150]: cluster 2024-02-22T22:34:37.750848+0000 mgr.smithi049.pzczis (mgr.14180) 569 : cluster [DBG] pgmap v433: 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-22T22:34:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:38 smithi049 bash[14150]: audit 2024-02-22T22:34:37.757409+0000 mon.smithi049 (mon.0) 823 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:34:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:38 smithi049 bash[14150]: audit 2024-02-22T22:34:37.771580+0000 mon.smithi049 (mon.0) 824 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:34:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:38 smithi049 bash[14150]: cephadm 2024-02-22T22:34:37.776548+0000 mgr.smithi049.pzczis (mgr.14180) 570 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.gchcuw on smithi195 2024-02-22T22:34:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:38 smithi195 bash[18068]: audit 2024-02-22T22:34:37.739777+0000 mon.smithi049 (mon.0) 820 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:34:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:38 smithi195 bash[18068]: audit 2024-02-22T22:34:37.741369+0000 mon.smithi049 (mon.0) 821 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:34:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:38 smithi195 bash[18068]: audit 2024-02-22T22:34:37.749784+0000 mon.smithi049 (mon.0) 822 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:34:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:38 smithi195 bash[18068]: cluster 2024-02-22T22:34:37.750848+0000 mgr.smithi049.pzczis (mgr.14180) 569 : cluster [DBG] pgmap v433: 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-22T22:34:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:38 smithi195 bash[18068]: audit 2024-02-22T22:34:37.757409+0000 mon.smithi049 (mon.0) 823 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:34:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:38 smithi195 bash[18068]: audit 2024-02-22T22:34:37.771580+0000 mon.smithi049 (mon.0) 824 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:34:39.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:38 smithi195 bash[18068]: cephadm 2024-02-22T22:34:37.776548+0000 mgr.smithi049.pzczis (mgr.14180) 570 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.gchcuw on smithi195 2024-02-22T22:34:39.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:39 smithi049 bash[14150]: cluster 2024-02-22T22:34:38.746145+0000 mon.smithi049 (mon.0) 825 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:34:39.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:39 smithi049 bash[14150]: cluster 2024-02-22T22:34:38.746230+0000 mon.smithi049 (mon.0) 826 : cluster [INF] Cluster is now healthy 2024-02-22T22:34:40.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:39 smithi195 bash[18068]: cluster 2024-02-22T22:34:38.746145+0000 mon.smithi049 (mon.0) 825 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:34:40.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:39 smithi195 bash[18068]: cluster 2024-02-22T22:34:38.746230+0000 mon.smithi049 (mon.0) 826 : cluster [INF] Cluster is now healthy 2024-02-22T22:34:40.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:40 smithi049 bash[14150]: cluster 2024-02-22T22:34:39.751496+0000 mgr.smithi049.pzczis (mgr.14180) 571 : cluster [DBG] pgmap v434: 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-22T22:34:41.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:40 smithi195 bash[18068]: cluster 2024-02-22T22:34:39.751496+0000 mgr.smithi049.pzczis (mgr.14180) 571 : cluster [DBG] pgmap v434: 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-22T22:34:41.165 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:34:41.166 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:32:28.918386Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.cllihg on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:33.521263Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pkomyd on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-pkomyd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.pkomyd\nDeploy daemon haproxy.nfs.foo.smithi195.pkomyd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.413828Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pqoiak on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pqoiak\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pqoiak\nDeploy daemon haproxy.nfs.foo.smithi049.pqoiak ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:33:37.416051Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.domiyx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:34:41.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: audit 2024-02-22T22:34:41.162313+0000 mgr.smithi049.pzczis (mgr.14180) 572 : audit [DBG] from='client.14872 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:34:41.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: cephadm 2024-02-22T22:34:41.592158+0000 mgr.smithi049.pzczis (mgr.14180) 573 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw 2024-02-22T22:34:41.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:34:41.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw 2024-02-22T22:34:41.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw 2024-02-22T22:34:41.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:34:41.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw 2024-02-22T22:34:41.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.gchcuw ... 2024-02-22T22:34:41.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:34:41.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:34:41.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:34:41.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:34:41.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:34:41.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:34:41.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:34:41.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:34:41.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:34:41.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:34:41.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw 2024-02-22T22:34:41.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:34:41.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw 2024-02-22T22:34:41.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw 2024-02-22T22:34:41.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:34:41.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw 2024-02-22T22:34:41.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.gchcuw ... 2024-02-22T22:34:41.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:34:41.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:34:41.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:34:41.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:34:41.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:34:41.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: cephadm 2024-02-22T22:34:41.592417+0000 mgr.smithi049.pzczis (mgr.14180) 574 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.gchcuw 2024-02-22T22:34:41.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: audit 2024-02-22T22:34:41.592911+0000 mon.smithi049 (mon.0) 827 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.gchcuw"}]: dispatch 2024-02-22T22:34:41.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: cephadm 2024-02-22T22:34:41.594489+0000 mgr.smithi049.pzczis (mgr.14180) 575 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.gchcuw on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw 2024-02-22T22:34:41.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:34:41.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw 2024-02-22T22:34:41.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw 2024-02-22T22:34:41.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:34:41.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw 2024-02-22T22:34:41.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.gchcuw ... 2024-02-22T22:34:41.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:34:41.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:34:41.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:34:41.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:34:41.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:34:41.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:41 smithi195 bash[18068]: cephadm 2024-02-22T22:34:41.600546+0000 mgr.smithi049.pzczis (mgr.14180) 576 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.dgptqc on smithi049 2024-02-22T22:34:41.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: audit 2024-02-22T22:34:41.162313+0000 mgr.smithi049.pzczis (mgr.14180) 572 : audit [DBG] from='client.14872 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:34:41.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: cephadm 2024-02-22T22:34:41.592158+0000 mgr.smithi049.pzczis (mgr.14180) 573 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw 2024-02-22T22:34:41.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:34:41.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw 2024-02-22T22:34:41.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw 2024-02-22T22:34:41.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:34:41.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw 2024-02-22T22:34:41.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.gchcuw ... 2024-02-22T22:34:41.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:34:41.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:34:41.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:34:41.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:34:41.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:34:41.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:34:41.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:34:41.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:34:41.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:34:41.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:34:41.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw 2024-02-22T22:34:41.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:34:41.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw 2024-02-22T22:34:41.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw 2024-02-22T22:34:41.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:34:41.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw 2024-02-22T22:34:41.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.gchcuw ... 2024-02-22T22:34:41.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:34:41.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:34:41.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:34:41.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:34:41.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:34:41.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: cephadm 2024-02-22T22:34:41.592417+0000 mgr.smithi049.pzczis (mgr.14180) 574 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.gchcuw 2024-02-22T22:34:41.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: audit 2024-02-22T22:34:41.592911+0000 mon.smithi049 (mon.0) 827 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.gchcuw"}]: dispatch 2024-02-22T22:34:41.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: cephadm 2024-02-22T22:34:41.594489+0000 mgr.smithi049.pzczis (mgr.14180) 575 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.gchcuw on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw 2024-02-22T22:34:41.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:34:41.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw 2024-02-22T22:34:41.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw 2024-02-22T22:34:41.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:34:41.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw 2024-02-22T22:34:41.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.gchcuw ... 2024-02-22T22:34:41.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:34:41.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:34:41.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:34:41.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:34:41.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:34:41.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:41 smithi049 bash[14150]: cephadm 2024-02-22T22:34:41.600546+0000 mgr.smithi049.pzczis (mgr.14180) 576 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.dgptqc on smithi049 2024-02-22T22:34:41.977 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:34:42.978 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:34:42.989 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:42 smithi049 bash[14150]: cluster 2024-02-22T22:34:41.752983+0000 mgr.smithi049.pzczis (mgr.14180) 577 : cluster [DBG] pgmap v435: 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-22T22:34:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:42 smithi195 bash[18068]: cluster 2024-02-22T22:34:41.752983+0000 mgr.smithi049.pzczis (mgr.14180) 577 : cluster [DBG] pgmap v435: 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-22T22:34:45.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:44 smithi049 bash[14150]: cluster 2024-02-22T22:34:43.754294+0000 mgr.smithi049.pzczis (mgr.14180) 578 : 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-22T22:34:45.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:44 smithi195 bash[18068]: cluster 2024-02-22T22:34:43.754294+0000 mgr.smithi049.pzczis (mgr.14180) 578 : 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-22T22:34:45.856 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:45 smithi049 bash[14150]: audit 2024-02-22T22:34:45.685031+0000 mon.smithi049 (mon.0) 828 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.dgptqc"}]: dispatch 2024-02-22T22:34:46.241 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:34:46.241 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:41.594148Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.gchcuw on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\nDeploy daemon haproxy.nfs.foo.smithi195.gchcuw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.686241Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.dgptqc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\nDeploy daemon haproxy.nfs.foo.smithi049.dgptqc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.690160Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.cetwlu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:34:46.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:45 smithi195 bash[18068]: audit 2024-02-22T22:34:45.685031+0000 mon.smithi049 (mon.0) 828 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.dgptqc"}]: dispatch 2024-02-22T22:34:47.029 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:34:47.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: cephadm 2024-02-22T22:34:45.683891+0000 mgr.smithi049.pzczis (mgr.14180) 579 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc 2024-02-22T22:34:47.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:34:47.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc 2024-02-22T22:34:47.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc 2024-02-22T22:34:47.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:34:47.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc 2024-02-22T22:34:47.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.dgptqc ... 2024-02-22T22:34:47.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:34:47.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:34:47.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:34:47.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:34:47.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:34:47.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:34:47.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:34:47.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:34:47.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:34:47.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:34:47.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc 2024-02-22T22:34:47.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:34:47.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc 2024-02-22T22:34:47.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc 2024-02-22T22:34:47.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:34:47.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc 2024-02-22T22:34:47.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.dgptqc ... 2024-02-22T22:34:47.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:34:47.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:34:47.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:34:47.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:34:47.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:34:47.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: cephadm 2024-02-22T22:34:45.684434+0000 mgr.smithi049.pzczis (mgr.14180) 580 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.dgptqc 2024-02-22T22:34:47.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: cephadm 2024-02-22T22:34:45.686488+0000 mgr.smithi049.pzczis (mgr.14180) 581 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.dgptqc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc 2024-02-22T22:34:47.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:34:47.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc 2024-02-22T22:34:47.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc 2024-02-22T22:34:47.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:34:47.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc 2024-02-22T22:34:47.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.dgptqc ... 2024-02-22T22:34:47.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:34:47.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:34:47.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:34:47.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:34:47.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:34:47.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: cephadm 2024-02-22T22:34:45.690289+0000 mgr.smithi049.pzczis (mgr.14180) 582 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.cetwlu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:34:47.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: cephadm 2024-02-22T22:34:45.692235+0000 mgr.smithi049.pzczis (mgr.14180) 583 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:34:47.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: cluster 2024-02-22T22:34:45.693619+0000 mgr.smithi049.pzczis (mgr.14180) 584 : cluster [DBG] pgmap v437: 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-22T22:34:47.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: cluster 2024-02-22T22:34:45.811440+0000 mon.smithi049 (mon.0) 829 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:34:47.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: audit 2024-02-22T22:34:46.231917+0000 mgr.smithi049.pzczis (mgr.14180) 585 : audit [DBG] from='client.14876 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:34:47.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:46 smithi049 bash[14150]: audit 2024-02-22T22:34:46.374908+0000 mon.smithi049 (mon.0) 830 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:34:47.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: cephadm 2024-02-22T22:34:45.683891+0000 mgr.smithi049.pzczis (mgr.14180) 579 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc 2024-02-22T22:34:47.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:34:47.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc 2024-02-22T22:34:47.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc 2024-02-22T22:34:47.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:34:47.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc 2024-02-22T22:34:47.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.dgptqc ... 2024-02-22T22:34:47.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:34:47.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:34:47.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:34:47.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:34:47.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:34:47.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:34:47.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:34:47.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:34:47.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:34:47.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:34:47.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc 2024-02-22T22:34:47.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:34:47.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc 2024-02-22T22:34:47.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc 2024-02-22T22:34:47.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:34:47.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc 2024-02-22T22:34:47.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.dgptqc ... 2024-02-22T22:34:47.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:34:47.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:34:47.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:34:47.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:34:47.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:34:47.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: cephadm 2024-02-22T22:34:45.684434+0000 mgr.smithi049.pzczis (mgr.14180) 580 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.dgptqc 2024-02-22T22:34:47.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: cephadm 2024-02-22T22:34:45.686488+0000 mgr.smithi049.pzczis (mgr.14180) 581 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.dgptqc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc 2024-02-22T22:34:47.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:34:47.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc 2024-02-22T22:34:47.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc 2024-02-22T22:34:47.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:34:47.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc 2024-02-22T22:34:47.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.dgptqc ... 2024-02-22T22:34:47.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:34:47.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:34:47.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:34:47.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:34:47.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:34:47.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: cephadm 2024-02-22T22:34:45.690289+0000 mgr.smithi049.pzczis (mgr.14180) 582 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.cetwlu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:34:47.308 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: cephadm 2024-02-22T22:34:45.692235+0000 mgr.smithi049.pzczis (mgr.14180) 583 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:34:47.308 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: cluster 2024-02-22T22:34:45.693619+0000 mgr.smithi049.pzczis (mgr.14180) 584 : cluster [DBG] pgmap v437: 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-22T22:34:47.308 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: cluster 2024-02-22T22:34:45.811440+0000 mon.smithi049 (mon.0) 829 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:34:47.308 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: audit 2024-02-22T22:34:46.231917+0000 mgr.smithi049.pzczis (mgr.14180) 585 : audit [DBG] from='client.14876 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:34:47.308 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:46 smithi195 bash[18068]: audit 2024-02-22T22:34:46.374908+0000 mon.smithi049 (mon.0) 830 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:34:48.030 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:34:49.132 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:48 smithi049 bash[14150]: cluster 2024-02-22T22:34:47.695412+0000 mgr.smithi049.pzczis (mgr.14180) 586 : cluster [DBG] pgmap v438: 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-22T22:34:49.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:48 smithi195 bash[18068]: cluster 2024-02-22T22:34:47.695412+0000 mgr.smithi049.pzczis (mgr.14180) 586 : cluster [DBG] pgmap v438: 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-22T22:34:50.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:50 smithi049 bash[14150]: cluster 2024-02-22T22:34:49.696094+0000 mgr.smithi049.pzczis (mgr.14180) 587 : cluster [DBG] pgmap v439: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:34:51.074 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:34:51.074 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:41.594148Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.gchcuw on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\nDeploy daemon haproxy.nfs.foo.smithi195.gchcuw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.686241Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.dgptqc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\nDeploy daemon haproxy.nfs.foo.smithi049.dgptqc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.690160Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.cetwlu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:34:51.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:50 smithi195 bash[18068]: cluster 2024-02-22T22:34:49.696094+0000 mgr.smithi049.pzczis (mgr.14180) 587 : cluster [DBG] pgmap v439: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:34:51.838 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:34:52.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:51 smithi049 bash[14150]: audit 2024-02-22T22:34:51.065575+0000 mgr.smithi049.pzczis (mgr.14180) 588 : audit [DBG] from='client.14880 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:34:52.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:51 smithi195 bash[18068]: audit 2024-02-22T22:34:51.065575+0000 mgr.smithi049.pzczis (mgr.14180) 588 : audit [DBG] from='client.14880 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:34:52.839 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:34:53.038 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:52 smithi049 bash[14150]: cluster 2024-02-22T22:34:51.697078+0000 mgr.smithi049.pzczis (mgr.14180) 589 : cluster [DBG] pgmap v440: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:34:53.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:52 smithi195 bash[18068]: cluster 2024-02-22T22:34:51.697078+0000 mgr.smithi049.pzczis (mgr.14180) 589 : cluster [DBG] pgmap v440: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:34:54.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:54 smithi049 bash[14150]: cluster 2024-02-22T22:34:53.698508+0000 mgr.smithi049.pzczis (mgr.14180) 590 : cluster [DBG] pgmap v441: 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-22T22:34:55.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:54 smithi195 bash[18068]: cluster 2024-02-22T22:34:53.698508+0000 mgr.smithi049.pzczis (mgr.14180) 590 : cluster [DBG] pgmap v441: 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-22T22:34:55.794 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:34:55.794 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:41.594148Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.gchcuw on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\nDeploy daemon haproxy.nfs.foo.smithi195.gchcuw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.686241Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.dgptqc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\nDeploy daemon haproxy.nfs.foo.smithi049.dgptqc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.690160Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.cetwlu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:34:56.495 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:34:57.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:56 smithi049 bash[14150]: cluster 2024-02-22T22:34:55.700167+0000 mgr.smithi049.pzczis (mgr.14180) 591 : cluster [DBG] pgmap v442: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:34:57.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:56 smithi049 bash[14150]: audit 2024-02-22T22:34:55.785144+0000 mgr.smithi049.pzczis (mgr.14180) 592 : audit [DBG] from='client.14884 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:34:57.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:56 smithi195 bash[18068]: cluster 2024-02-22T22:34:55.700167+0000 mgr.smithi049.pzczis (mgr.14180) 591 : cluster [DBG] pgmap v442: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:34:57.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:56 smithi195 bash[18068]: audit 2024-02-22T22:34:55.785144+0000 mgr.smithi049.pzczis (mgr.14180) 592 : audit [DBG] from='client.14884 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:34:57.496 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:34:59.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:34:58 smithi049 bash[14150]: cluster 2024-02-22T22:34:57.701706+0000 mgr.smithi049.pzczis (mgr.14180) 593 : cluster [DBG] pgmap v443: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:34:59.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:34:58 smithi195 bash[18068]: cluster 2024-02-22T22:34:57.701706+0000 mgr.smithi049.pzczis (mgr.14180) 593 : cluster [DBG] pgmap v443: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:35:00.666 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:35:00.666 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:41.594148Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.gchcuw on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\nDeploy daemon haproxy.nfs.foo.smithi195.gchcuw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.686241Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.dgptqc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\nDeploy daemon haproxy.nfs.foo.smithi049.dgptqc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.690160Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.cetwlu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:35:01.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:00 smithi049 bash[14150]: cluster 2024-02-22T22:34:59.702764+0000 mgr.smithi049.pzczis (mgr.14180) 594 : cluster [DBG] pgmap v444: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:35:01.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:00 smithi049 bash[14150]: audit 2024-02-22T22:35:00.656230+0000 mgr.smithi049.pzczis (mgr.14180) 595 : audit [DBG] from='client.14888 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:35:01.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:00 smithi195 bash[18068]: cluster 2024-02-22T22:34:59.702764+0000 mgr.smithi049.pzczis (mgr.14180) 594 : cluster [DBG] pgmap v444: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:35:01.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:00 smithi195 bash[18068]: audit 2024-02-22T22:35:00.656230+0000 mgr.smithi049.pzczis (mgr.14180) 595 : audit [DBG] from='client.14888 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:35:01.409 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:35:02.410 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:35:03.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:02 smithi049 bash[14150]: cluster 2024-02-22T22:35:01.704677+0000 mgr.smithi049.pzczis (mgr.14180) 596 : cluster [DBG] pgmap v445: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:35:03.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:02 smithi195 bash[18068]: cluster 2024-02-22T22:35:01.704677+0000 mgr.smithi049.pzczis (mgr.14180) 596 : cluster [DBG] pgmap v445: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:35:05.157 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:04 smithi049 bash[14150]: cluster 2024-02-22T22:35:03.706461+0000 mgr.smithi049.pzczis (mgr.14180) 597 : cluster [DBG] pgmap v446: 225 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-22T22:35:05.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:04 smithi195 bash[18068]: cluster 2024-02-22T22:35:03.706461+0000 mgr.smithi049.pzczis (mgr.14180) 597 : cluster [DBG] pgmap v446: 225 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-22T22:35:05.541 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:35:05.541 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:41.594148Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.gchcuw on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\nDeploy daemon haproxy.nfs.foo.smithi195.gchcuw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.686241Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.dgptqc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\nDeploy daemon haproxy.nfs.foo.smithi049.dgptqc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.690160Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.cetwlu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:35:06.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:05 smithi049 bash[14150]: audit 2024-02-22T22:35:05.533193+0000 mgr.smithi049.pzczis (mgr.14180) 598 : audit [DBG] from='client.14892 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:35:06.229 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:35:06.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:05 smithi195 bash[18068]: audit 2024-02-22T22:35:05.533193+0000 mgr.smithi049.pzczis (mgr.14180) 598 : audit [DBG] from='client.14892 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:35:07.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:06 smithi049 bash[14150]: cluster 2024-02-22T22:35:05.707651+0000 mgr.smithi049.pzczis (mgr.14180) 599 : 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-22T22:35:07.230 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:35:07.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:06 smithi195 bash[18068]: cluster 2024-02-22T22:35:05.707651+0000 mgr.smithi049.pzczis (mgr.14180) 599 : 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-22T22:35:08.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:08 smithi049 bash[14150]: cluster 2024-02-22T22:35:07.709378+0000 mgr.smithi049.pzczis (mgr.14180) 600 : 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-22T22:35:09.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:08 smithi195 bash[18068]: cluster 2024-02-22T22:35:07.709378+0000 mgr.smithi049.pzczis (mgr.14180) 600 : 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-22T22:35:10.587 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:35:10.587 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:41.594148Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.gchcuw on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\nDeploy daemon haproxy.nfs.foo.smithi195.gchcuw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.686241Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.dgptqc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\nDeploy daemon haproxy.nfs.foo.smithi049.dgptqc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.690160Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.cetwlu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:35:11.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:10 smithi049 bash[14150]: cluster 2024-02-22T22:35:09.710169+0000 mgr.smithi049.pzczis (mgr.14180) 601 : cluster [DBG] pgmap v449: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:35:11.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:10 smithi049 bash[14150]: audit 2024-02-22T22:35:10.579714+0000 mgr.smithi049.pzczis (mgr.14180) 602 : audit [DBG] from='client.14896 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:35:11.273 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:35:11.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:10 smithi195 bash[18068]: cluster 2024-02-22T22:35:09.710169+0000 mgr.smithi049.pzczis (mgr.14180) 601 : cluster [DBG] pgmap v449: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:35:11.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:10 smithi195 bash[18068]: audit 2024-02-22T22:35:10.579714+0000 mgr.smithi049.pzczis (mgr.14180) 602 : audit [DBG] from='client.14896 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:35:12.275 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:35:13.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:12 smithi049 bash[14150]: cluster 2024-02-22T22:35:11.712003+0000 mgr.smithi049.pzczis (mgr.14180) 603 : 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-22T22:35:13.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:12 smithi195 bash[18068]: cluster 2024-02-22T22:35:11.712003+0000 mgr.smithi049.pzczis (mgr.14180) 603 : 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-22T22:35:15.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:14 smithi049 bash[14150]: cluster 2024-02-22T22:35:13.713701+0000 mgr.smithi049.pzczis (mgr.14180) 604 : cluster [DBG] pgmap v451: 225 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-22T22:35:15.278 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:35:15.278 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:41.594148Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.gchcuw on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\nDeploy daemon haproxy.nfs.foo.smithi195.gchcuw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.686241Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.dgptqc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\nDeploy daemon haproxy.nfs.foo.smithi049.dgptqc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.690160Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.cetwlu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:35:15.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:14 smithi195 bash[18068]: cluster 2024-02-22T22:35:13.713701+0000 mgr.smithi049.pzczis (mgr.14180) 604 : cluster [DBG] pgmap v451: 225 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-22T22:35:15.979 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:35:16.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:15 smithi049 bash[14150]: audit 2024-02-22T22:35:15.269271+0000 mgr.smithi049.pzczis (mgr.14180) 605 : audit [DBG] from='client.14900 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:35:16.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:15 smithi195 bash[18068]: audit 2024-02-22T22:35:15.269271+0000 mgr.smithi049.pzczis (mgr.14180) 605 : audit [DBG] from='client.14900 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:35:16.980 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:35:17.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:16 smithi049 bash[14150]: cluster 2024-02-22T22:35:15.714649+0000 mgr.smithi049.pzczis (mgr.14180) 606 : 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-22T22:35:17.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:16 smithi195 bash[18068]: cluster 2024-02-22T22:35:15.714649+0000 mgr.smithi049.pzczis (mgr.14180) 606 : 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-22T22:35:19.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:18 smithi049 bash[14150]: cluster 2024-02-22T22:35:17.716249+0000 mgr.smithi049.pzczis (mgr.14180) 607 : 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-22T22:35:19.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:18 smithi195 bash[18068]: cluster 2024-02-22T22:35:17.716249+0000 mgr.smithi049.pzczis (mgr.14180) 607 : 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-22T22:35:20.121 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:35:20.121 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:41.594148Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.gchcuw on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\nDeploy daemon haproxy.nfs.foo.smithi195.gchcuw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.686241Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.dgptqc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\nDeploy daemon haproxy.nfs.foo.smithi049.dgptqc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.690160Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.cetwlu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:35:20.780 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:35:21.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:20 smithi049 bash[14150]: cluster 2024-02-22T22:35:19.717353+0000 mgr.smithi049.pzczis (mgr.14180) 608 : cluster [DBG] pgmap v454: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:35:21.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:20 smithi049 bash[14150]: audit 2024-02-22T22:35:20.113301+0000 mgr.smithi049.pzczis (mgr.14180) 609 : audit [DBG] from='client.14904 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:35:21.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:20 smithi195 bash[18068]: cluster 2024-02-22T22:35:19.717353+0000 mgr.smithi049.pzczis (mgr.14180) 608 : cluster [DBG] pgmap v454: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:35:21.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:20 smithi195 bash[18068]: audit 2024-02-22T22:35:20.113301+0000 mgr.smithi049.pzczis (mgr.14180) 609 : audit [DBG] from='client.14904 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:35:21.781 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:35:23.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:22 smithi049 bash[14150]: cluster 2024-02-22T22:35:21.719328+0000 mgr.smithi049.pzczis (mgr.14180) 610 : 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-22T22:35:23.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:22 smithi195 bash[18068]: cluster 2024-02-22T22:35:21.719328+0000 mgr.smithi049.pzczis (mgr.14180) 610 : 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-22T22:35:24.847 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:35:24.847 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:41.594148Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.gchcuw on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\nDeploy daemon haproxy.nfs.foo.smithi195.gchcuw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.686241Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.dgptqc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\nDeploy daemon haproxy.nfs.foo.smithi049.dgptqc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.690160Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.cetwlu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:35:25.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:24 smithi049 bash[14150]: cluster 2024-02-22T22:35:23.720979+0000 mgr.smithi049.pzczis (mgr.14180) 611 : cluster [DBG] pgmap v456: 225 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-22T22:35:25.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:24 smithi195 bash[18068]: cluster 2024-02-22T22:35:23.720979+0000 mgr.smithi049.pzczis (mgr.14180) 611 : cluster [DBG] pgmap v456: 225 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-22T22:35:25.596 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:35:26.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:25 smithi195 bash[18068]: audit 2024-02-22T22:35:24.838737+0000 mgr.smithi049.pzczis (mgr.14180) 612 : audit [DBG] from='client.14908 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:35:26.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:25 smithi049 bash[14150]: audit 2024-02-22T22:35:24.838737+0000 mgr.smithi049.pzczis (mgr.14180) 612 : audit [DBG] from='client.14908 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:35:26.598 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:35:27.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:26 smithi195 bash[18068]: cluster 2024-02-22T22:35:25.722838+0000 mgr.smithi049.pzczis (mgr.14180) 613 : 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-22T22:35:27.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:26 smithi049 bash[14150]: cluster 2024-02-22T22:35:25.722838+0000 mgr.smithi049.pzczis (mgr.14180) 613 : 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-22T22:35:29.288 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:28 smithi049 bash[14150]: cluster 2024-02-22T22:35:27.724605+0000 mgr.smithi049.pzczis (mgr.14180) 614 : 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-22T22:35:29.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:28 smithi195 bash[18068]: cluster 2024-02-22T22:35:27.724605+0000 mgr.smithi049.pzczis (mgr.14180) 614 : 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-22T22:35:29.694 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:35:29.694 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:41.594148Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.gchcuw on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\nDeploy daemon haproxy.nfs.foo.smithi195.gchcuw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.686241Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.dgptqc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\nDeploy daemon haproxy.nfs.foo.smithi049.dgptqc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.690160Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.cetwlu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:35:30.426 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:35:31.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:30 smithi195 bash[18068]: audit 2024-02-22T22:35:29.690098+0000 mgr.smithi049.pzczis (mgr.14180) 615 : audit [DBG] from='client.14912 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:35:31.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:30 smithi195 bash[18068]: cluster 2024-02-22T22:35:29.725504+0000 mgr.smithi049.pzczis (mgr.14180) 616 : cluster [DBG] pgmap v459: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:35:31.427 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:35:31.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:30 smithi049 bash[14150]: audit 2024-02-22T22:35:29.690098+0000 mgr.smithi049.pzczis (mgr.14180) 615 : audit [DBG] from='client.14912 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:35:31.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:30 smithi049 bash[14150]: cluster 2024-02-22T22:35:29.725504+0000 mgr.smithi049.pzczis (mgr.14180) 616 : cluster [DBG] pgmap v459: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:35:33.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:32 smithi049 bash[14150]: cluster 2024-02-22T22:35:31.726657+0000 mgr.smithi049.pzczis (mgr.14180) 617 : 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-22T22:35:33.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:32 smithi195 bash[18068]: cluster 2024-02-22T22:35:31.726657+0000 mgr.smithi049.pzczis (mgr.14180) 617 : 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-22T22:35:34.546 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:35:34.546 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:41.594148Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.gchcuw on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\nDeploy daemon haproxy.nfs.foo.smithi195.gchcuw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.686241Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.dgptqc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\nDeploy daemon haproxy.nfs.foo.smithi049.dgptqc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.690160Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.cetwlu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:35:35.220 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:35:35.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:35 smithi195 bash[18068]: cluster 2024-02-22T22:35:33.727919+0000 mgr.smithi049.pzczis (mgr.14180) 618 : cluster [DBG] pgmap v461: 225 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-22T22:35:35.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:35 smithi195 bash[18068]: audit 2024-02-22T22:35:34.538113+0000 mgr.smithi049.pzczis (mgr.14180) 619 : audit [DBG] from='client.14916 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:35:35.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:35 smithi049 bash[14150]: cluster 2024-02-22T22:35:33.727919+0000 mgr.smithi049.pzczis (mgr.14180) 618 : cluster [DBG] pgmap v461: 225 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-22T22:35:35.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:35 smithi049 bash[14150]: audit 2024-02-22T22:35:34.538113+0000 mgr.smithi049.pzczis (mgr.14180) 619 : audit [DBG] from='client.14916 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:35:36.221 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:35:37.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:37 smithi195 bash[18068]: cluster 2024-02-22T22:35:35.729644+0000 mgr.smithi049.pzczis (mgr.14180) 620 : 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-22T22:35:37.402 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:37 smithi049 bash[14150]: cluster 2024-02-22T22:35:35.729644+0000 mgr.smithi049.pzczis (mgr.14180) 620 : 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-22T22:35:39.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:39 smithi195 bash[18068]: cluster 2024-02-22T22:35:37.731273+0000 mgr.smithi049.pzczis (mgr.14180) 621 : 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-22T22:35:39.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:39 smithi049 bash[14150]: cluster 2024-02-22T22:35:37.731273+0000 mgr.smithi049.pzczis (mgr.14180) 621 : 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-22T22:35:39.557 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:35:39.557 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:41.594148Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.gchcuw on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\nDeploy daemon haproxy.nfs.foo.smithi195.gchcuw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.686241Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.dgptqc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\nDeploy daemon haproxy.nfs.foo.smithi049.dgptqc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.690160Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.cetwlu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:35:40.298 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:40 smithi049 bash[14150]: audit 2024-02-22T22:35:39.546802+0000 mgr.smithi049.pzczis (mgr.14180) 622 : audit [DBG] from='client.14920 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:35:40.299 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:35:40.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:40 smithi195 bash[18068]: audit 2024-02-22T22:35:39.546802+0000 mgr.smithi049.pzczis (mgr.14180) 622 : audit [DBG] from='client.14920 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:35:41.300 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:35:41.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:41 smithi195 bash[18068]: cluster 2024-02-22T22:35:39.731900+0000 mgr.smithi049.pzczis (mgr.14180) 623 : cluster [DBG] pgmap v464: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:35:41.313 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:41 smithi049 bash[14150]: cluster 2024-02-22T22:35:39.731900+0000 mgr.smithi049.pzczis (mgr.14180) 623 : cluster [DBG] pgmap v464: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:35:43.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:43 smithi195 bash[18068]: cluster 2024-02-22T22:35:41.733604+0000 mgr.smithi049.pzczis (mgr.14180) 624 : 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-22T22:35:43.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:43 smithi049 bash[14150]: cluster 2024-02-22T22:35:41.733604+0000 mgr.smithi049.pzczis (mgr.14180) 624 : 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-22T22:35:44.559 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:35:44.560 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:41.594148Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.gchcuw on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\nDeploy daemon haproxy.nfs.foo.smithi195.gchcuw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.686241Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.dgptqc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\nDeploy daemon haproxy.nfs.foo.smithi049.dgptqc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.690160Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.cetwlu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:35:45.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:45 smithi195 bash[18068]: cluster 2024-02-22T22:35:43.735122+0000 mgr.smithi049.pzczis (mgr.14180) 625 : cluster [DBG] pgmap v466: 225 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-22T22:35:45.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:45 smithi195 bash[18068]: audit 2024-02-22T22:35:44.552229+0000 mgr.smithi049.pzczis (mgr.14180) 626 : audit [DBG] from='client.14924 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:35:45.321 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:45 smithi049 bash[14150]: cluster 2024-02-22T22:35:43.735122+0000 mgr.smithi049.pzczis (mgr.14180) 625 : cluster [DBG] pgmap v466: 225 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-22T22:35:45.321 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:45 smithi049 bash[14150]: audit 2024-02-22T22:35:44.552229+0000 mgr.smithi049.pzczis (mgr.14180) 626 : audit [DBG] from='client.14924 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:35:45.322 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:35:46.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:46 smithi195 bash[18068]: audit 2024-02-22T22:35:45.696414+0000 mon.smithi049 (mon.0) 831 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:35:46.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:46 smithi195 bash[18068]: audit 2024-02-22T22:35:45.995702+0000 mon.smithi049 (mon.0) 832 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:35:46.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:46 smithi195 bash[18068]: audit 2024-02-22T22:35:45.997897+0000 mon.smithi049 (mon.0) 833 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:35:46.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:46 smithi195 bash[18068]: audit 2024-02-22T22:35:46.001783+0000 mon.smithi049 (mon.0) 834 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:35:46.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:46 smithi195 bash[18068]: audit 2024-02-22T22:35:46.003098+0000 mon.smithi049 (mon.0) 835 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:35:46.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:46 smithi195 bash[18068]: audit 2024-02-22T22:35:46.003453+0000 mon.smithi049 (mon.0) 836 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:35:46.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:46 smithi195 bash[18068]: audit 2024-02-22T22:35:46.005338+0000 mon.smithi049 (mon.0) 837 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:35:46.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:46 smithi195 bash[18068]: audit 2024-02-22T22:35:46.010989+0000 mon.smithi049 (mon.0) 838 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:35:46.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:46 smithi195 bash[18068]: audit 2024-02-22T22:35:46.012975+0000 mon.smithi049 (mon.0) 839 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:35:46.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:46 smithi195 bash[18068]: audit 2024-02-22T22:35:46.014115+0000 mon.smithi049 (mon.0) 840 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:35:46.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:46 smithi195 bash[18068]: audit 2024-02-22T22:35:46.019613+0000 mon.smithi049 (mon.0) 841 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:35:46.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:46 smithi195 bash[18068]: audit 2024-02-22T22:35:46.020891+0000 mon.smithi049 (mon.0) 842 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:35:46.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:46 smithi195 bash[18068]: audit 2024-02-22T22:35:46.021908+0000 mon.smithi049 (mon.0) 843 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:35:46.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:46 smithi195 bash[18068]: audit 2024-02-22T22:35:46.027361+0000 mon.smithi049 (mon.0) 844 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:35:46.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:46 smithi195 bash[18068]: audit 2024-02-22T22:35:46.035351+0000 mon.smithi049 (mon.0) 845 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:35:46.323 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:35:46.337 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:46 smithi049 bash[14150]: audit 2024-02-22T22:35:45.696414+0000 mon.smithi049 (mon.0) 831 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:35:46.337 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:46 smithi049 bash[14150]: audit 2024-02-22T22:35:45.995702+0000 mon.smithi049 (mon.0) 832 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:35:46.337 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:46 smithi049 bash[14150]: audit 2024-02-22T22:35:45.997897+0000 mon.smithi049 (mon.0) 833 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:35:46.338 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:46 smithi049 bash[14150]: audit 2024-02-22T22:35:46.001783+0000 mon.smithi049 (mon.0) 834 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:35:46.338 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:46 smithi049 bash[14150]: audit 2024-02-22T22:35:46.003098+0000 mon.smithi049 (mon.0) 835 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:35:46.338 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:46 smithi049 bash[14150]: audit 2024-02-22T22:35:46.003453+0000 mon.smithi049 (mon.0) 836 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:35:46.338 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:46 smithi049 bash[14150]: audit 2024-02-22T22:35:46.005338+0000 mon.smithi049 (mon.0) 837 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:35:46.338 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:46 smithi049 bash[14150]: audit 2024-02-22T22:35:46.010989+0000 mon.smithi049 (mon.0) 838 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:35:46.338 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:46 smithi049 bash[14150]: audit 2024-02-22T22:35:46.012975+0000 mon.smithi049 (mon.0) 839 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:35:46.338 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:46 smithi049 bash[14150]: audit 2024-02-22T22:35:46.014115+0000 mon.smithi049 (mon.0) 840 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-02-22T22:35:46.338 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:46 smithi049 bash[14150]: audit 2024-02-22T22:35:46.019613+0000 mon.smithi049 (mon.0) 841 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:35:46.338 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:46 smithi049 bash[14150]: audit 2024-02-22T22:35:46.020891+0000 mon.smithi049 (mon.0) 842 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:35:46.338 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:46 smithi049 bash[14150]: audit 2024-02-22T22:35:46.021908+0000 mon.smithi049 (mon.0) 843 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:35:46.338 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:46 smithi049 bash[14150]: audit 2024-02-22T22:35:46.027361+0000 mon.smithi049 (mon.0) 844 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:35:46.338 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:46 smithi049 bash[14150]: audit 2024-02-22T22:35:46.035351+0000 mon.smithi049 (mon.0) 845 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:35:47.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:47 smithi195 bash[18068]: cluster 2024-02-22T22:35:45.737089+0000 mgr.smithi049.pzczis (mgr.14180) 627 : 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-22T22:35:47.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:47 smithi195 bash[18068]: cephadm 2024-02-22T22:35:46.004252+0000 mgr.smithi049.pzczis (mgr.14180) 628 : cephadm [INF] Adjusting osd_memory_target on smithi049 to 2748M 2024-02-22T22:35:47.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:47 smithi195 bash[18068]: cephadm 2024-02-22T22:35:46.014993+0000 mgr.smithi049.pzczis (mgr.14180) 629 : cephadm [INF] Adjusting osd_memory_target on smithi195 to 3772M 2024-02-22T22:35:47.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:47 smithi195 bash[18068]: cluster 2024-02-22T22:35:46.028276+0000 mgr.smithi049.pzczis (mgr.14180) 630 : cluster [DBG] pgmap v468: 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-22T22:35:47.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:47 smithi195 bash[18068]: cluster 2024-02-22T22:35:46.039095+0000 mon.smithi049 (mon.0) 846 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:35:47.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:47 smithi195 bash[18068]: cluster 2024-02-22T22:35:46.039142+0000 mon.smithi049 (mon.0) 847 : cluster [INF] Cluster is now healthy 2024-02-22T22:35:47.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:47 smithi195 bash[18068]: audit 2024-02-22T22:35:46.056183+0000 mon.smithi049 (mon.0) 848 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:35:47.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:47 smithi195 bash[18068]: cephadm 2024-02-22T22:35:46.060388+0000 mgr.smithi049.pzczis (mgr.14180) 631 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.bszsky on smithi195 2024-02-22T22:35:47.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:47 smithi049 bash[14150]: cluster 2024-02-22T22:35:45.737089+0000 mgr.smithi049.pzczis (mgr.14180) 627 : 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-22T22:35:47.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:47 smithi049 bash[14150]: cephadm 2024-02-22T22:35:46.004252+0000 mgr.smithi049.pzczis (mgr.14180) 628 : cephadm [INF] Adjusting osd_memory_target on smithi049 to 2748M 2024-02-22T22:35:47.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:47 smithi049 bash[14150]: cephadm 2024-02-22T22:35:46.014993+0000 mgr.smithi049.pzczis (mgr.14180) 629 : cephadm [INF] Adjusting osd_memory_target on smithi195 to 3772M 2024-02-22T22:35:47.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:47 smithi049 bash[14150]: cluster 2024-02-22T22:35:46.028276+0000 mgr.smithi049.pzczis (mgr.14180) 630 : cluster [DBG] pgmap v468: 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-22T22:35:47.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:47 smithi049 bash[14150]: cluster 2024-02-22T22:35:46.039095+0000 mon.smithi049 (mon.0) 846 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:35:47.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:47 smithi049 bash[14150]: cluster 2024-02-22T22:35:46.039142+0000 mon.smithi049 (mon.0) 847 : cluster [INF] Cluster is now healthy 2024-02-22T22:35:47.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:47 smithi049 bash[14150]: audit 2024-02-22T22:35:46.056183+0000 mon.smithi049 (mon.0) 848 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:35:47.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:47 smithi049 bash[14150]: cephadm 2024-02-22T22:35:46.060388+0000 mgr.smithi049.pzczis (mgr.14180) 631 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.bszsky on smithi195 2024-02-22T22:35:49.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:49 smithi049 bash[14150]: cluster 2024-02-22T22:35:48.029677+0000 mgr.smithi049.pzczis (mgr.14180) 632 : cluster [DBG] pgmap v469: 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-22T22:35:49.441 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:49 smithi195 bash[18068]: cluster 2024-02-22T22:35:48.029677+0000 mgr.smithi049.pzczis (mgr.14180) 632 : cluster [DBG] pgmap v469: 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-22T22:35:49.488 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:35:49.488 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:33:37.418003Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.sykqiv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:41.594148Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.gchcuw on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-gchcuw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.gchcuw\nDeploy daemon haproxy.nfs.foo.smithi195.gchcuw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.686241Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.dgptqc on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-dgptqc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.dgptqc\nDeploy daemon haproxy.nfs.foo.smithi049.dgptqc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:34:45.690160Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.cetwlu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:35:50.238 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:35:50.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:50 smithi049 bash[14150]: audit 2024-02-22T22:35:49.481377+0000 mgr.smithi049.pzczis (mgr.14180) 633 : audit [DBG] from='client.14928 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:35:50.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:50 smithi195 bash[18068]: audit 2024-02-22T22:35:49.481377+0000 mgr.smithi049.pzczis (mgr.14180) 633 : audit [DBG] from='client.14928 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:35:51.239 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:35:51.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: cluster 2024-02-22T22:35:50.030232+0000 mgr.smithi049.pzczis (mgr.14180) 634 : cluster [DBG] pgmap v470: 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-22T22:35:51.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: cephadm 2024-02-22T22:35:50.141352+0000 mgr.smithi049.pzczis (mgr.14180) 635 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky 2024-02-22T22:35:51.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:35:51.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky 2024-02-22T22:35:51.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky 2024-02-22T22:35:51.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:35:51.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky 2024-02-22T22:35:51.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.bszsky ... 2024-02-22T22:35:51.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:35:51.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:35:51.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:35:51.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:35:51.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:35:51.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:35:51.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:35:51.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:35:51.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:35:51.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:35:51.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky 2024-02-22T22:35:51.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:35:51.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky 2024-02-22T22:35:51.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky 2024-02-22T22:35:51.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:35:51.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky 2024-02-22T22:35:51.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.bszsky ... 2024-02-22T22:35:51.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:35:51.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:35:51.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:35:51.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:35:51.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:35:51.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: cephadm 2024-02-22T22:35:50.141967+0000 mgr.smithi049.pzczis (mgr.14180) 636 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.bszsky 2024-02-22T22:35:51.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: audit 2024-02-22T22:35:50.142522+0000 mon.smithi049 (mon.0) 849 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.bszsky"}]: dispatch 2024-02-22T22:35:51.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: cephadm 2024-02-22T22:35:50.143975+0000 mgr.smithi049.pzczis (mgr.14180) 637 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.bszsky on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky 2024-02-22T22:35:51.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:35:51.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky 2024-02-22T22:35:51.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky 2024-02-22T22:35:51.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:35:51.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky 2024-02-22T22:35:51.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.bszsky ... 2024-02-22T22:35:51.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:35:51.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:35:51.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:35:51.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:35:51.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:35:51.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:51 smithi049 bash[14150]: cephadm 2024-02-22T22:35:50.148488+0000 mgr.smithi049.pzczis (mgr.14180) 638 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.pdnqaa on smithi049 2024-02-22T22:35:51.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: cluster 2024-02-22T22:35:50.030232+0000 mgr.smithi049.pzczis (mgr.14180) 634 : cluster [DBG] pgmap v470: 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-22T22:35:51.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: cephadm 2024-02-22T22:35:50.141352+0000 mgr.smithi049.pzczis (mgr.14180) 635 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky 2024-02-22T22:35:51.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:35:51.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky 2024-02-22T22:35:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky 2024-02-22T22:35:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:35:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky 2024-02-22T22:35:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.bszsky ... 2024-02-22T22:35:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:35:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:35:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:35:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:35:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:35:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:35:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:35:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:35:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:35:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:35:51.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky 2024-02-22T22:35:51.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:35:51.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky 2024-02-22T22:35:51.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky 2024-02-22T22:35:51.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:35:51.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky 2024-02-22T22:35:51.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.bszsky ... 2024-02-22T22:35:51.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:35:51.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:35:51.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:35:51.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:35:51.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:35:51.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: cephadm 2024-02-22T22:35:50.141967+0000 mgr.smithi049.pzczis (mgr.14180) 636 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.bszsky 2024-02-22T22:35:51.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: audit 2024-02-22T22:35:50.142522+0000 mon.smithi049 (mon.0) 849 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.bszsky"}]: dispatch 2024-02-22T22:35:51.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: cephadm 2024-02-22T22:35:50.143975+0000 mgr.smithi049.pzczis (mgr.14180) 637 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.bszsky on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky 2024-02-22T22:35:51.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:35:51.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky 2024-02-22T22:35:51.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky 2024-02-22T22:35:51.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:35:51.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky 2024-02-22T22:35:51.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.bszsky ... 2024-02-22T22:35:51.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:35:51.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:35:51.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:35:51.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:35:51.558 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:35:51.558 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:51 smithi195 bash[18068]: cephadm 2024-02-22T22:35:50.148488+0000 mgr.smithi049.pzczis (mgr.14180) 638 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.pdnqaa on smithi049 2024-02-22T22:35:53.905 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:53 smithi049 bash[14150]: cluster 2024-02-22T22:35:52.032027+0000 mgr.smithi049.pzczis (mgr.14180) 639 : cluster [DBG] pgmap v471: 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-22T22:35:53.905 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:53 smithi049 bash[14150]: audit 2024-02-22T22:35:52.656049+0000 mon.smithi049 (mon.0) 850 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:35:54.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:53 smithi195 bash[18068]: cluster 2024-02-22T22:35:52.032027+0000 mgr.smithi049.pzczis (mgr.14180) 639 : cluster [DBG] pgmap v471: 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-22T22:35:54.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:53 smithi195 bash[18068]: audit 2024-02-22T22:35:52.656049+0000 mon.smithi049 (mon.0) 850 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:35:54.331 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:35:54.331 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:50.143727Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bszsky on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\nDeploy daemon haproxy.nfs.foo.smithi195.bszsky ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.988136Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pdnqaa on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\nDeploy daemon haproxy.nfs.foo.smithi049.pdnqaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.989959Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.eyrvsh on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:35:54.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:54 smithi049 bash[14150]: audit 2024-02-22T22:35:53.986961+0000 mon.smithi049 (mon.0) 851 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.pdnqaa"}]: dispatch 2024-02-22T22:35:55.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:54 smithi195 bash[18068]: audit 2024-02-22T22:35:53.986961+0000 mon.smithi049 (mon.0) 851 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.pdnqaa"}]: dispatch 2024-02-22T22:35:55.106 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:35:55.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: cephadm 2024-02-22T22:35:53.986113+0000 mgr.smithi049.pzczis (mgr.14180) 640 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa 2024-02-22T22:35:55.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:35:55.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa 2024-02-22T22:35:55.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa 2024-02-22T22:35:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:35:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa 2024-02-22T22:35:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.pdnqaa ... 2024-02-22T22:35:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:35:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:35:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:35:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:35:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:35:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:35:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:35:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:35:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:35:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:35:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa 2024-02-22T22:35:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:35:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa 2024-02-22T22:35:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa 2024-02-22T22:35:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:35:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa 2024-02-22T22:35:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.pdnqaa ... 2024-02-22T22:35:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:35:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:35:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:35:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:35:55.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:35:55.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: cephadm 2024-02-22T22:35:53.986378+0000 mgr.smithi049.pzczis (mgr.14180) 641 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.pdnqaa 2024-02-22T22:35:55.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: cephadm 2024-02-22T22:35:53.988239+0000 mgr.smithi049.pzczis (mgr.14180) 642 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.pdnqaa on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa 2024-02-22T22:35:55.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:35:55.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa 2024-02-22T22:35:55.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa 2024-02-22T22:35:55.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:35:55.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa 2024-02-22T22:35:55.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.pdnqaa ... 2024-02-22T22:35:55.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:35:55.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:35:55.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:35:55.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:35:55.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:35:55.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: cephadm 2024-02-22T22:35:53.990047+0000 mgr.smithi049.pzczis (mgr.14180) 643 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.eyrvsh on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:35:55.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: cephadm 2024-02-22T22:35:53.993920+0000 mgr.smithi049.pzczis (mgr.14180) 644 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:35:55.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: cluster 2024-02-22T22:35:53.996089+0000 mgr.smithi049.pzczis (mgr.14180) 645 : 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-22T22:35:55.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: audit 2024-02-22T22:35:54.323144+0000 mgr.smithi049.pzczis (mgr.14180) 646 : audit [DBG] from='client.14932 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:35:55.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:55 smithi049 bash[14150]: cluster 2024-02-22T22:35:54.656203+0000 mon.smithi049 (mon.0) 852 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:35:56.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: cephadm 2024-02-22T22:35:53.986113+0000 mgr.smithi049.pzczis (mgr.14180) 640 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa 2024-02-22T22:35:56.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:35:56.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa 2024-02-22T22:35:56.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa 2024-02-22T22:35:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:35:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa 2024-02-22T22:35:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.pdnqaa ... 2024-02-22T22:35:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:35:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:35:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:35:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:35:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:35:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:35:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:35:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:35:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:35:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:35:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa 2024-02-22T22:35:56.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:35:56.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa 2024-02-22T22:35:56.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa 2024-02-22T22:35:56.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:35:56.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa 2024-02-22T22:35:56.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.pdnqaa ... 2024-02-22T22:35:56.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:35:56.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:35:56.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:35:56.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:35:56.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:35:56.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: cephadm 2024-02-22T22:35:53.986378+0000 mgr.smithi049.pzczis (mgr.14180) 641 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.pdnqaa 2024-02-22T22:35:56.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: cephadm 2024-02-22T22:35:53.988239+0000 mgr.smithi049.pzczis (mgr.14180) 642 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.pdnqaa on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa 2024-02-22T22:35:56.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:35:56.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa 2024-02-22T22:35:56.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa 2024-02-22T22:35:56.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:35:56.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa 2024-02-22T22:35:56.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.pdnqaa ... 2024-02-22T22:35:56.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:35:56.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:35:56.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:35:56.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:35:56.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:35:56.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: cephadm 2024-02-22T22:35:53.990047+0000 mgr.smithi049.pzczis (mgr.14180) 643 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.eyrvsh on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:35:56.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: cephadm 2024-02-22T22:35:53.993920+0000 mgr.smithi049.pzczis (mgr.14180) 644 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:35:56.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: cluster 2024-02-22T22:35:53.996089+0000 mgr.smithi049.pzczis (mgr.14180) 645 : 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-22T22:35:56.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: audit 2024-02-22T22:35:54.323144+0000 mgr.smithi049.pzczis (mgr.14180) 646 : audit [DBG] from='client.14932 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:35:56.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:55 smithi195 bash[18068]: cluster 2024-02-22T22:35:54.656203+0000 mon.smithi049 (mon.0) 852 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:35:56.107 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:35:57.513 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:57 smithi049 bash[14150]: cluster 2024-02-22T22:35:55.997894+0000 mgr.smithi049.pzczis (mgr.14180) 647 : 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-22T22:35:57.513 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:57 smithi049 bash[14150]: audit 2024-02-22T22:35:56.437539+0000 mon.smithi049 (mon.0) 853 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:35:57.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:57 smithi195 bash[18068]: cluster 2024-02-22T22:35:55.997894+0000 mgr.smithi049.pzczis (mgr.14180) 647 : 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-22T22:35:57.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:57 smithi195 bash[18068]: audit 2024-02-22T22:35:56.437539+0000 mon.smithi049 (mon.0) 853 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:35:59.268 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:35:59.269 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:50.143727Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bszsky on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\nDeploy daemon haproxy.nfs.foo.smithi195.bszsky ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.988136Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pdnqaa on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\nDeploy daemon haproxy.nfs.foo.smithi049.pdnqaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.989959Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.eyrvsh on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:35:59.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:35:59 smithi049 bash[14150]: cluster 2024-02-22T22:35:57.999434+0000 mgr.smithi049.pzczis (mgr.14180) 648 : cluster [DBG] pgmap v474: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:35:59.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:35:59 smithi195 bash[18068]: cluster 2024-02-22T22:35:57.999434+0000 mgr.smithi049.pzczis (mgr.14180) 648 : cluster [DBG] pgmap v474: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:35:59.995 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:36:00.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:00 smithi195 bash[18068]: audit 2024-02-22T22:35:59.260639+0000 mgr.smithi049.pzczis (mgr.14180) 649 : audit [DBG] from='client.14936 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:36:00.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:00 smithi049 bash[14150]: audit 2024-02-22T22:35:59.260639+0000 mgr.smithi049.pzczis (mgr.14180) 649 : audit [DBG] from='client.14936 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:36:00.996 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:36:01.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:01 smithi195 bash[18068]: cluster 2024-02-22T22:36:00.000438+0000 mgr.smithi049.pzczis (mgr.14180) 650 : cluster [DBG] pgmap v475: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:36:01.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:01 smithi049 bash[14150]: cluster 2024-02-22T22:36:00.000438+0000 mgr.smithi049.pzczis (mgr.14180) 650 : cluster [DBG] pgmap v475: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:36:03.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:03 smithi195 bash[18068]: cluster 2024-02-22T22:36:02.002242+0000 mgr.smithi049.pzczis (mgr.14180) 651 : cluster [DBG] pgmap v476: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:36:03.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:03 smithi049 bash[14150]: cluster 2024-02-22T22:36:02.002242+0000 mgr.smithi049.pzczis (mgr.14180) 651 : cluster [DBG] pgmap v476: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:36:04.081 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:36:04.081 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:50.143727Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bszsky on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\nDeploy daemon haproxy.nfs.foo.smithi195.bszsky ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.988136Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pdnqaa on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\nDeploy daemon haproxy.nfs.foo.smithi049.pdnqaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.989959Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.eyrvsh on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:36:04.813 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:36:05.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:05 smithi195 bash[18068]: cluster 2024-02-22T22:36:04.003770+0000 mgr.smithi049.pzczis (mgr.14180) 652 : cluster [DBG] pgmap v477: 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-22T22:36:05.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:05 smithi195 bash[18068]: audit 2024-02-22T22:36:04.071284+0000 mgr.smithi049.pzczis (mgr.14180) 653 : audit [DBG] from='client.14940 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:36:05.814 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:36:05.828 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:05 smithi049 bash[14150]: cluster 2024-02-22T22:36:04.003770+0000 mgr.smithi049.pzczis (mgr.14180) 652 : cluster [DBG] pgmap v477: 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-22T22:36:05.829 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:05 smithi049 bash[14150]: audit 2024-02-22T22:36:04.071284+0000 mgr.smithi049.pzczis (mgr.14180) 653 : audit [DBG] from='client.14940 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:36:07.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:07 smithi049 bash[14150]: cluster 2024-02-22T22:36:06.005490+0000 mgr.smithi049.pzczis (mgr.14180) 654 : cluster [DBG] pgmap v478: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:36:07.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:07 smithi195 bash[18068]: cluster 2024-02-22T22:36:06.005490+0000 mgr.smithi049.pzczis (mgr.14180) 654 : cluster [DBG] pgmap v478: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:36:08.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:08 smithi049 bash[14150]: audit 2024-02-22T22:36:07.655192+0000 mon.smithi049 (mon.0) 854 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:36:09.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:08 smithi195 bash[18068]: audit 2024-02-22T22:36:07.655192+0000 mon.smithi049 (mon.0) 854 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:36:09.147 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:36:09.147 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:50.143727Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bszsky on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\nDeploy daemon haproxy.nfs.foo.smithi195.bszsky ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.988136Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pdnqaa on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\nDeploy daemon haproxy.nfs.foo.smithi049.pdnqaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.989959Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.eyrvsh on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:36:09.897 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:36:09.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:09 smithi049 bash[14150]: cluster 2024-02-22T22:36:08.007140+0000 mgr.smithi049.pzczis (mgr.14180) 655 : cluster [DBG] pgmap v479: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:36:10.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:09 smithi195 bash[18068]: cluster 2024-02-22T22:36:08.007140+0000 mgr.smithi049.pzczis (mgr.14180) 655 : cluster [DBG] pgmap v479: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:36:10.898 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:36:10.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:10 smithi049 bash[14150]: audit 2024-02-22T22:36:09.139861+0000 mgr.smithi049.pzczis (mgr.14180) 656 : audit [DBG] from='client.14944 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:36:11.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:10 smithi195 bash[18068]: audit 2024-02-22T22:36:09.139861+0000 mgr.smithi049.pzczis (mgr.14180) 656 : audit [DBG] from='client.14944 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:36:11.938 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:11 smithi049 bash[14150]: cluster 2024-02-22T22:36:10.008174+0000 mgr.smithi049.pzczis (mgr.14180) 657 : cluster [DBG] pgmap v480: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:36:12.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:11 smithi195 bash[18068]: cluster 2024-02-22T22:36:10.008174+0000 mgr.smithi049.pzczis (mgr.14180) 657 : cluster [DBG] pgmap v480: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:36:12.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:12 smithi049 bash[14150]: cluster 2024-02-22T22:36:12.010545+0000 mgr.smithi049.pzczis (mgr.14180) 658 : cluster [DBG] pgmap v481: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:36:13.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:12 smithi195 bash[18068]: cluster 2024-02-22T22:36:12.010545+0000 mgr.smithi049.pzczis (mgr.14180) 658 : cluster [DBG] pgmap v481: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:36:13.962 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:36:13.963 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:50.143727Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bszsky on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\nDeploy daemon haproxy.nfs.foo.smithi195.bszsky ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.988136Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pdnqaa on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\nDeploy daemon haproxy.nfs.foo.smithi049.pdnqaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.989959Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.eyrvsh on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:36:14.651 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:36:15.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:15 smithi049 bash[14150]: audit 2024-02-22T22:36:13.958814+0000 mgr.smithi049.pzczis (mgr.14180) 659 : audit [DBG] from='client.14948 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:36:15.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:15 smithi049 bash[14150]: cluster 2024-02-22T22:36:14.012345+0000 mgr.smithi049.pzczis (mgr.14180) 660 : cluster [DBG] pgmap v482: 225 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-22T22:36:15.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:15 smithi195 bash[18068]: audit 2024-02-22T22:36:13.958814+0000 mgr.smithi049.pzczis (mgr.14180) 659 : audit [DBG] from='client.14948 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:36:15.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:15 smithi195 bash[18068]: cluster 2024-02-22T22:36:14.012345+0000 mgr.smithi049.pzczis (mgr.14180) 660 : cluster [DBG] pgmap v482: 225 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-22T22:36:15.652 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:36:17.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:17 smithi049 bash[14150]: cluster 2024-02-22T22:36:16.014369+0000 mgr.smithi049.pzczis (mgr.14180) 661 : 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-22T22:36:17.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:17 smithi195 bash[18068]: cluster 2024-02-22T22:36:16.014369+0000 mgr.smithi049.pzczis (mgr.14180) 661 : 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-22T22:36:18.744 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:36:18.745 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:50.143727Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bszsky on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\nDeploy daemon haproxy.nfs.foo.smithi195.bszsky ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.988136Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pdnqaa on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\nDeploy daemon haproxy.nfs.foo.smithi049.pdnqaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.989959Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.eyrvsh on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:36:19.423 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:19 smithi049 bash[14150]: cluster 2024-02-22T22:36:18.016073+0000 mgr.smithi049.pzczis (mgr.14180) 662 : 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-22T22:36:19.425 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:36:19.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:19 smithi195 bash[18068]: cluster 2024-02-22T22:36:18.016073+0000 mgr.smithi049.pzczis (mgr.14180) 662 : 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-22T22:36:20.426 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:36:20.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:20 smithi049 bash[14150]: audit 2024-02-22T22:36:18.736526+0000 mgr.smithi049.pzczis (mgr.14180) 663 : audit [DBG] from='client.14952 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:36:20.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:20 smithi195 bash[18068]: audit 2024-02-22T22:36:18.736526+0000 mgr.smithi049.pzczis (mgr.14180) 663 : audit [DBG] from='client.14952 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:36:21.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:21 smithi049 bash[14150]: cluster 2024-02-22T22:36:20.017135+0000 mgr.smithi049.pzczis (mgr.14180) 664 : cluster [DBG] pgmap v485: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:36:21.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:21 smithi195 bash[18068]: cluster 2024-02-22T22:36:20.017135+0000 mgr.smithi049.pzczis (mgr.14180) 664 : cluster [DBG] pgmap v485: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:36:23.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:23 smithi049 bash[14150]: cluster 2024-02-22T22:36:22.018159+0000 mgr.smithi049.pzczis (mgr.14180) 665 : 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-22T22:36:23.537 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:36:23.537 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:50.143727Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bszsky on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\nDeploy daemon haproxy.nfs.foo.smithi195.bszsky ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.988136Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pdnqaa on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\nDeploy daemon haproxy.nfs.foo.smithi049.pdnqaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.989959Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.eyrvsh on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:36:23.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:23 smithi195 bash[18068]: cluster 2024-02-22T22:36:22.018159+0000 mgr.smithi049.pzczis (mgr.14180) 665 : 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-22T22:36:24.304 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:36:24.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:24 smithi049 bash[14150]: audit 2024-02-22T22:36:23.531750+0000 mgr.smithi049.pzczis (mgr.14180) 666 : audit [DBG] from='client.14956 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:36:24.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:24 smithi195 bash[18068]: audit 2024-02-22T22:36:23.531750+0000 mgr.smithi049.pzczis (mgr.14180) 666 : audit [DBG] from='client.14956 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:36:25.305 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:36:25.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:25 smithi049 bash[14150]: cluster 2024-02-22T22:36:24.019758+0000 mgr.smithi049.pzczis (mgr.14180) 667 : cluster [DBG] pgmap v487: 225 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-22T22:36:25.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:25 smithi195 bash[18068]: cluster 2024-02-22T22:36:24.019758+0000 mgr.smithi049.pzczis (mgr.14180) 667 : cluster [DBG] pgmap v487: 225 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-22T22:36:27.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:27 smithi049 bash[14150]: cluster 2024-02-22T22:36:26.021683+0000 mgr.smithi049.pzczis (mgr.14180) 668 : 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-22T22:36:27.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:27 smithi195 bash[18068]: cluster 2024-02-22T22:36:26.021683+0000 mgr.smithi049.pzczis (mgr.14180) 668 : 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-22T22:36:28.605 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:36:28.606 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:50.143727Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bszsky on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\nDeploy daemon haproxy.nfs.foo.smithi195.bszsky ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.988136Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pdnqaa on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\nDeploy daemon haproxy.nfs.foo.smithi049.pdnqaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.989959Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.eyrvsh on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:36:29.320 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:36:29.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:29 smithi049 bash[14150]: cluster 2024-02-22T22:36:28.023295+0000 mgr.smithi049.pzczis (mgr.14180) 669 : 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-22T22:36:29.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:29 smithi049 bash[14150]: audit 2024-02-22T22:36:28.597879+0000 mgr.smithi049.pzczis (mgr.14180) 670 : audit [DBG] from='client.14960 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:36:29.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:29 smithi195 bash[18068]: cluster 2024-02-22T22:36:28.023295+0000 mgr.smithi049.pzczis (mgr.14180) 669 : 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-22T22:36:29.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:29 smithi195 bash[18068]: audit 2024-02-22T22:36:28.597879+0000 mgr.smithi049.pzczis (mgr.14180) 670 : audit [DBG] from='client.14960 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:36:30.321 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:36:31.425 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:31 smithi049 bash[14150]: cluster 2024-02-22T22:36:30.024315+0000 mgr.smithi049.pzczis (mgr.14180) 671 : cluster [DBG] pgmap v490: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:36:31.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:31 smithi195 bash[18068]: cluster 2024-02-22T22:36:30.024315+0000 mgr.smithi049.pzczis (mgr.14180) 671 : cluster [DBG] pgmap v490: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:36:33.353 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:36:33.353 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:50.143727Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bszsky on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\nDeploy daemon haproxy.nfs.foo.smithi195.bszsky ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.988136Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pdnqaa on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\nDeploy daemon haproxy.nfs.foo.smithi049.pdnqaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.989959Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.eyrvsh on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:36:33.390 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:33 smithi049 bash[14150]: cluster 2024-02-22T22:36:32.026210+0000 mgr.smithi049.pzczis (mgr.14180) 672 : 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-22T22:36:33.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:33 smithi195 bash[18068]: cluster 2024-02-22T22:36:32.026210+0000 mgr.smithi049.pzczis (mgr.14180) 672 : 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-22T22:36:34.091 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:36:34.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:34 smithi049 bash[14150]: audit 2024-02-22T22:36:33.342882+0000 mgr.smithi049.pzczis (mgr.14180) 673 : audit [DBG] from='client.14964 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:36:34.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:34 smithi195 bash[18068]: audit 2024-02-22T22:36:33.342882+0000 mgr.smithi049.pzczis (mgr.14180) 673 : audit [DBG] from='client.14964 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:36:35.091 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:36:35.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:35 smithi049 bash[14150]: cluster 2024-02-22T22:36:34.027899+0000 mgr.smithi049.pzczis (mgr.14180) 674 : cluster [DBG] pgmap v492: 225 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-22T22:36:35.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:35 smithi195 bash[18068]: cluster 2024-02-22T22:36:34.027899+0000 mgr.smithi049.pzczis (mgr.14180) 674 : cluster [DBG] pgmap v492: 225 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-22T22:36:37.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:37 smithi049 bash[14150]: cluster 2024-02-22T22:36:36.029841+0000 mgr.smithi049.pzczis (mgr.14180) 675 : 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-22T22:36:37.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:37 smithi195 bash[18068]: cluster 2024-02-22T22:36:36.029841+0000 mgr.smithi049.pzczis (mgr.14180) 675 : 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-22T22:36:38.345 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:36:38.345 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:50.143727Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bszsky on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\nDeploy daemon haproxy.nfs.foo.smithi195.bszsky ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.988136Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pdnqaa on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\nDeploy daemon haproxy.nfs.foo.smithi049.pdnqaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.989959Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.eyrvsh on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:36:39.067 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:36:39.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:39 smithi049 bash[14150]: cluster 2024-02-22T22:36:38.030717+0000 mgr.smithi049.pzczis (mgr.14180) 676 : 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-22T22:36:39.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:39 smithi049 bash[14150]: audit 2024-02-22T22:36:38.334729+0000 mgr.smithi049.pzczis (mgr.14180) 677 : audit [DBG] from='client.14968 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:36:39.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:39 smithi195 bash[18068]: cluster 2024-02-22T22:36:38.030717+0000 mgr.smithi049.pzczis (mgr.14180) 676 : 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-22T22:36:39.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:39 smithi195 bash[18068]: audit 2024-02-22T22:36:38.334729+0000 mgr.smithi049.pzczis (mgr.14180) 677 : audit [DBG] from='client.14968 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:36:40.067 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:36:41.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:41 smithi049 bash[14150]: cluster 2024-02-22T22:36:40.031603+0000 mgr.smithi049.pzczis (mgr.14180) 678 : cluster [DBG] pgmap v495: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:36:41.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:41 smithi195 bash[18068]: cluster 2024-02-22T22:36:40.031603+0000 mgr.smithi049.pzczis (mgr.14180) 678 : cluster [DBG] pgmap v495: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:36:43.363 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:36:43.364 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:50.143727Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bszsky on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\nDeploy daemon haproxy.nfs.foo.smithi195.bszsky ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.988136Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pdnqaa on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\nDeploy daemon haproxy.nfs.foo.smithi049.pdnqaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.989959Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.eyrvsh on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:36:43.398 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:43 smithi049 bash[14150]: cluster 2024-02-22T22:36:42.033583+0000 mgr.smithi049.pzczis (mgr.14180) 679 : 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-22T22:36:43.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:43 smithi195 bash[18068]: cluster 2024-02-22T22:36:42.033583+0000 mgr.smithi049.pzczis (mgr.14180) 679 : 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-22T22:36:44.027 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:36:44.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:44 smithi049 bash[14150]: audit 2024-02-22T22:36:43.359609+0000 mgr.smithi049.pzczis (mgr.14180) 680 : audit [DBG] from='client.14972 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:36:44.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:44 smithi195 bash[18068]: audit 2024-02-22T22:36:43.359609+0000 mgr.smithi049.pzczis (mgr.14180) 680 : audit [DBG] from='client.14972 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:36:45.028 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:36:45.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:45 smithi049 bash[14150]: cluster 2024-02-22T22:36:44.035284+0000 mgr.smithi049.pzczis (mgr.14180) 681 : cluster [DBG] pgmap v497: 225 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-22T22:36:45.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:45 smithi195 bash[18068]: cluster 2024-02-22T22:36:44.035284+0000 mgr.smithi049.pzczis (mgr.14180) 681 : cluster [DBG] pgmap v497: 225 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-22T22:36:47.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:47 smithi049 bash[14150]: cluster 2024-02-22T22:36:46.037226+0000 mgr.smithi049.pzczis (mgr.14180) 682 : 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-22T22:36:47.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:47 smithi195 bash[18068]: cluster 2024-02-22T22:36:46.037226+0000 mgr.smithi049.pzczis (mgr.14180) 682 : 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-22T22:36:48.354 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:36:48.354 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:50.143727Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bszsky on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\nDeploy daemon haproxy.nfs.foo.smithi195.bszsky ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.988136Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pdnqaa on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\nDeploy daemon haproxy.nfs.foo.smithi049.pdnqaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.989959Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.eyrvsh on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:36:49.110 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:36:49.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:49 smithi049 bash[14150]: cluster 2024-02-22T22:36:48.038901+0000 mgr.smithi049.pzczis (mgr.14180) 683 : 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-22T22:36:49.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:49 smithi049 bash[14150]: audit 2024-02-22T22:36:48.343793+0000 mgr.smithi049.pzczis (mgr.14180) 684 : audit [DBG] from='client.14976 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:36:49.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:49 smithi195 bash[18068]: cluster 2024-02-22T22:36:48.038901+0000 mgr.smithi049.pzczis (mgr.14180) 683 : 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-22T22:36:49.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:49 smithi195 bash[18068]: audit 2024-02-22T22:36:48.343793+0000 mgr.smithi049.pzczis (mgr.14180) 684 : audit [DBG] from='client.14976 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:36:50.112 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:36:51.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:51 smithi049 bash[14150]: cluster 2024-02-22T22:36:50.039976+0000 mgr.smithi049.pzczis (mgr.14180) 685 : cluster [DBG] pgmap v500: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:36:51.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:51 smithi195 bash[18068]: cluster 2024-02-22T22:36:50.039976+0000 mgr.smithi049.pzczis (mgr.14180) 685 : cluster [DBG] pgmap v500: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:36:53.264 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:36:53.264 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:50.143727Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bszsky on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\nDeploy daemon haproxy.nfs.foo.smithi195.bszsky ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.988136Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pdnqaa on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\nDeploy daemon haproxy.nfs.foo.smithi049.pdnqaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.989959Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.eyrvsh on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:36:53.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:53 smithi195 bash[18068]: cluster 2024-02-22T22:36:52.041374+0000 mgr.smithi049.pzczis (mgr.14180) 686 : 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-22T22:36:53.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:53 smithi049 bash[14150]: cluster 2024-02-22T22:36:52.041374+0000 mgr.smithi049.pzczis (mgr.14180) 686 : 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-22T22:36:54.061 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:36:54.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:54 smithi049 bash[14150]: audit 2024-02-22T22:36:53.255661+0000 mgr.smithi049.pzczis (mgr.14180) 687 : audit [DBG] from='client.14980 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:36:54.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:54 smithi049 bash[14150]: audit 2024-02-22T22:36:53.998691+0000 mon.smithi049 (mon.0) 855 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:36:54.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:54 smithi195 bash[18068]: audit 2024-02-22T22:36:53.255661+0000 mgr.smithi049.pzczis (mgr.14180) 687 : audit [DBG] from='client.14980 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:36:54.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:54 smithi195 bash[18068]: audit 2024-02-22T22:36:53.998691+0000 mon.smithi049 (mon.0) 855 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:36:55.062 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:36:55.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:55 smithi049 bash[14150]: cluster 2024-02-22T22:36:54.042645+0000 mgr.smithi049.pzczis (mgr.14180) 688 : cluster [DBG] pgmap v502: 225 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-22T22:36:55.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:55 smithi049 bash[14150]: audit 2024-02-22T22:36:54.283443+0000 mon.smithi049 (mon.0) 856 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:36:55.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:55 smithi049 bash[14150]: audit 2024-02-22T22:36:54.284640+0000 mon.smithi049 (mon.0) 857 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:36:55.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:55 smithi049 bash[14150]: audit 2024-02-22T22:36:54.292196+0000 mon.smithi049 (mon.0) 858 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:36:55.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:55 smithi049 bash[14150]: cluster 2024-02-22T22:36:54.293153+0000 mgr.smithi049.pzczis (mgr.14180) 689 : cluster [DBG] pgmap v503: 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-22T22:36:55.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:55 smithi049 bash[14150]: audit 2024-02-22T22:36:54.299543+0000 mon.smithi049 (mon.0) 859 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:36:55.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:55 smithi049 bash[14150]: audit 2024-02-22T22:36:54.310496+0000 mon.smithi049 (mon.0) 860 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:36:55.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:55 smithi049 bash[14150]: cephadm 2024-02-22T22:36:54.313990+0000 mgr.smithi049.pzczis (mgr.14180) 690 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.ttfaug on smithi195 2024-02-22T22:36:55.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:55 smithi195 bash[18068]: cluster 2024-02-22T22:36:54.042645+0000 mgr.smithi049.pzczis (mgr.14180) 688 : cluster [DBG] pgmap v502: 225 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-22T22:36:55.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:55 smithi195 bash[18068]: audit 2024-02-22T22:36:54.283443+0000 mon.smithi049 (mon.0) 856 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:36:55.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:55 smithi195 bash[18068]: audit 2024-02-22T22:36:54.284640+0000 mon.smithi049 (mon.0) 857 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:36:55.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:55 smithi195 bash[18068]: audit 2024-02-22T22:36:54.292196+0000 mon.smithi049 (mon.0) 858 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:36:55.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:55 smithi195 bash[18068]: cluster 2024-02-22T22:36:54.293153+0000 mgr.smithi049.pzczis (mgr.14180) 689 : cluster [DBG] pgmap v503: 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-22T22:36:55.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:55 smithi195 bash[18068]: audit 2024-02-22T22:36:54.299543+0000 mon.smithi049 (mon.0) 859 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:36:55.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:55 smithi195 bash[18068]: audit 2024-02-22T22:36:54.310496+0000 mon.smithi049 (mon.0) 860 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:36:55.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:55 smithi195 bash[18068]: cephadm 2024-02-22T22:36:54.313990+0000 mgr.smithi049.pzczis (mgr.14180) 690 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.ttfaug on smithi195 2024-02-22T22:36:56.386 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:56 smithi049 bash[14150]: cluster 2024-02-22T22:36:55.289236+0000 mon.smithi049 (mon.0) 861 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:36:56.386 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:56 smithi049 bash[14150]: cluster 2024-02-22T22:36:55.289319+0000 mon.smithi049 (mon.0) 862 : cluster [INF] Cluster is now healthy 2024-02-22T22:36:56.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:56 smithi195 bash[18068]: cluster 2024-02-22T22:36:55.289236+0000 mon.smithi049 (mon.0) 861 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:36:56.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:56 smithi195 bash[18068]: cluster 2024-02-22T22:36:55.289319+0000 mon.smithi049 (mon.0) 862 : cluster [INF] Cluster is now healthy 2024-02-22T22:36:57.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:57 smithi195 bash[18068]: cluster 2024-02-22T22:36:56.294883+0000 mgr.smithi049.pzczis (mgr.14180) 691 : cluster [DBG] pgmap v504: 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-22T22:36:57.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:57 smithi049 bash[14150]: cluster 2024-02-22T22:36:56.294883+0000 mgr.smithi049.pzczis (mgr.14180) 691 : cluster [DBG] pgmap v504: 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-22T22:36:58.128 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:36:58.129 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:34:45.692122Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.wmjiap on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:50.143727Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bszsky on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bszsky\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bszsky\nDeploy daemon haproxy.nfs.foo.smithi195.bszsky ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.988136Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.pdnqaa on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-pdnqaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.pdnqaa\nDeploy daemon haproxy.nfs.foo.smithi049.pdnqaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:35:53.989959Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.eyrvsh on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:36:58.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:58 smithi049 bash[14150]: audit 2024-02-22T22:36:58.268471+0000 mon.smithi049 (mon.0) 863 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.ttfaug"}]: dispatch 2024-02-22T22:36:58.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:58 smithi195 bash[18068]: audit 2024-02-22T22:36:58.268471+0000 mon.smithi049 (mon.0) 863 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.ttfaug"}]: dispatch 2024-02-22T22:36:58.905 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:36:59.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: audit 2024-02-22T22:36:58.120766+0000 mgr.smithi049.pzczis (mgr.14180) 692 : audit [DBG] from='client.14984 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:36:59.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: cephadm 2024-02-22T22:36:58.267409+0000 mgr.smithi049.pzczis (mgr.14180) 693 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug 2024-02-22T22:36:59.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:36:59.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug 2024-02-22T22:36:59.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug 2024-02-22T22:36:59.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:36:59.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug 2024-02-22T22:36:59.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.ttfaug ... 2024-02-22T22:36:59.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:36:59.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:36:59.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:36:59.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:36:59.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:36:59.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:36:59.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:36:59.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:36:59.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:36:59.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:36:59.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug 2024-02-22T22:36:59.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:36:59.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug 2024-02-22T22:36:59.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug 2024-02-22T22:36:59.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:36:59.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug 2024-02-22T22:36:59.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.ttfaug ... 2024-02-22T22:36:59.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:36:59.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:36:59.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:36:59.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:36:59.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:36:59.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: cephadm 2024-02-22T22:36:58.267823+0000 mgr.smithi049.pzczis (mgr.14180) 694 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.ttfaug 2024-02-22T22:36:59.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: cephadm 2024-02-22T22:36:58.270223+0000 mgr.smithi049.pzczis (mgr.14180) 695 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.ttfaug on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug 2024-02-22T22:36:59.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:36:59.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug 2024-02-22T22:36:59.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug 2024-02-22T22:36:59.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:36:59.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug 2024-02-22T22:36:59.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.ttfaug ... 2024-02-22T22:36:59.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:36:59.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:36:59.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:36:59.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:36:59.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:36:59.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: cephadm 2024-02-22T22:36:58.274953+0000 mgr.smithi049.pzczis (mgr.14180) 696 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.vdcdgs on smithi049 2024-02-22T22:36:59.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:36:59 smithi049 bash[14150]: cluster 2024-02-22T22:36:58.296216+0000 mgr.smithi049.pzczis (mgr.14180) 697 : cluster [DBG] pgmap v505: 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-22T22:36:59.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: audit 2024-02-22T22:36:58.120766+0000 mgr.smithi049.pzczis (mgr.14180) 692 : audit [DBG] from='client.14984 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:36:59.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: cephadm 2024-02-22T22:36:58.267409+0000 mgr.smithi049.pzczis (mgr.14180) 693 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug 2024-02-22T22:36:59.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:36:59.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug 2024-02-22T22:36:59.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug 2024-02-22T22:36:59.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:36:59.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug 2024-02-22T22:36:59.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.ttfaug ... 2024-02-22T22:36:59.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:36:59.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:36:59.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:36:59.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:36:59.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:36:59.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:36:59.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:36:59.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:36:59.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:36:59.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:36:59.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug 2024-02-22T22:36:59.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:36:59.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug 2024-02-22T22:36:59.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug 2024-02-22T22:36:59.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:36:59.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug 2024-02-22T22:36:59.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.ttfaug ... 2024-02-22T22:36:59.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:36:59.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:36:59.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:36:59.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:36:59.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:36:59.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: cephadm 2024-02-22T22:36:58.267823+0000 mgr.smithi049.pzczis (mgr.14180) 694 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.ttfaug 2024-02-22T22:36:59.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: cephadm 2024-02-22T22:36:58.270223+0000 mgr.smithi049.pzczis (mgr.14180) 695 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.ttfaug on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug 2024-02-22T22:36:59.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:36:59.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug 2024-02-22T22:36:59.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug 2024-02-22T22:36:59.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:36:59.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug 2024-02-22T22:36:59.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.ttfaug ... 2024-02-22T22:36:59.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:36:59.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:36:59.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:36:59.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:36:59.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:36:59.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: cephadm 2024-02-22T22:36:58.274953+0000 mgr.smithi049.pzczis (mgr.14180) 696 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.vdcdgs on smithi049 2024-02-22T22:36:59.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:36:59 smithi195 bash[18068]: cluster 2024-02-22T22:36:58.296216+0000 mgr.smithi049.pzczis (mgr.14180) 697 : cluster [DBG] pgmap v505: 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-22T22:36:59.907 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:37:01.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:01 smithi049 bash[14150]: cluster 2024-02-22T22:37:00.297562+0000 mgr.smithi049.pzczis (mgr.14180) 698 : cluster [DBG] pgmap v506: 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-22T22:37:01.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:01 smithi195 bash[18068]: cluster 2024-02-22T22:37:00.297562+0000 mgr.smithi049.pzczis (mgr.14180) 698 : cluster [DBG] pgmap v506: 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-22T22:37:03.200 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:37:03.200 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:36:58.269975Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ttfaug on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\nDeploy daemon haproxy.nfs.foo.smithi195.ttfaug ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.636790Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.vdcdgs on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\nDeploy daemon haproxy.nfs.foo.smithi049.vdcdgs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.639897Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qdyutd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:37:03.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: cluster 2024-02-22T22:37:02.299228+0000 mgr.smithi049.pzczis (mgr.14180) 699 : cluster [DBG] pgmap v507: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2024-02-22T22:37:03.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: cephadm 2024-02-22T22:37:02.634220+0000 mgr.smithi049.pzczis (mgr.14180) 700 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs 2024-02-22T22:37:03.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:37:03.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs 2024-02-22T22:37:03.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs 2024-02-22T22:37:03.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:37:03.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs 2024-02-22T22:37:03.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.vdcdgs ... 2024-02-22T22:37:03.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:37:03.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:37:03.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:37:03.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:37:03.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:37:03.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:37:03.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:37:03.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:37:03.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:37:03.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:37:03.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs 2024-02-22T22:37:03.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:37:03.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs 2024-02-22T22:37:03.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs 2024-02-22T22:37:03.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:37:03.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs 2024-02-22T22:37:03.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.vdcdgs ... 2024-02-22T22:37:03.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:37:03.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:37:03.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:37:03.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:37:03.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:37:03.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: cephadm 2024-02-22T22:37:02.634855+0000 mgr.smithi049.pzczis (mgr.14180) 701 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.vdcdgs 2024-02-22T22:37:03.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: audit 2024-02-22T22:37:02.635677+0000 mon.smithi049 (mon.0) 864 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.vdcdgs"}]: dispatch 2024-02-22T22:37:03.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: cephadm 2024-02-22T22:37:02.636995+0000 mgr.smithi049.pzczis (mgr.14180) 702 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.vdcdgs on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs 2024-02-22T22:37:03.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:37:03.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs 2024-02-22T22:37:03.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs 2024-02-22T22:37:03.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:37:03.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs 2024-02-22T22:37:03.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.vdcdgs ... 2024-02-22T22:37:03.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:37:03.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:37:03.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:37:03.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:37:03.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:37:03.696 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: cephadm 2024-02-22T22:37:02.640033+0000 mgr.smithi049.pzczis (mgr.14180) 703 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.qdyutd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:37:03.696 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: cephadm 2024-02-22T22:37:02.642272+0000 mgr.smithi049.pzczis (mgr.14180) 704 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:37:03.696 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:03 smithi049 bash[14150]: cluster 2024-02-22T22:37:02.643659+0000 mgr.smithi049.pzczis (mgr.14180) 705 : cluster [DBG] pgmap v508: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 119 B/s rd, 0 op/s 2024-02-22T22:37:03.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: cluster 2024-02-22T22:37:02.299228+0000 mgr.smithi049.pzczis (mgr.14180) 699 : cluster [DBG] pgmap v507: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2024-02-22T22:37:03.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: cephadm 2024-02-22T22:37:02.634220+0000 mgr.smithi049.pzczis (mgr.14180) 700 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs 2024-02-22T22:37:03.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:37:03.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs 2024-02-22T22:37:03.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs 2024-02-22T22:37:03.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:37:03.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs 2024-02-22T22:37:03.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.vdcdgs ... 2024-02-22T22:37:03.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:37:03.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:37:03.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:37:03.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:37:03.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:37:03.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:37:03.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:37:03.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:37:03.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:37:03.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:37:03.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs 2024-02-22T22:37:03.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:37:03.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs 2024-02-22T22:37:03.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs 2024-02-22T22:37:03.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:37:03.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs 2024-02-22T22:37:03.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.vdcdgs ... 2024-02-22T22:37:03.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:37:03.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:37:03.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:37:03.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:37:03.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:37:03.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: cephadm 2024-02-22T22:37:02.634855+0000 mgr.smithi049.pzczis (mgr.14180) 701 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.vdcdgs 2024-02-22T22:37:03.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: audit 2024-02-22T22:37:02.635677+0000 mon.smithi049 (mon.0) 864 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.vdcdgs"}]: dispatch 2024-02-22T22:37:03.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: cephadm 2024-02-22T22:37:02.636995+0000 mgr.smithi049.pzczis (mgr.14180) 702 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.vdcdgs on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs 2024-02-22T22:37:03.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:37:03.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs 2024-02-22T22:37:03.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs 2024-02-22T22:37:03.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:37:03.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs 2024-02-22T22:37:03.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.vdcdgs ... 2024-02-22T22:37:03.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:37:03.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:37:03.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:37:03.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:37:03.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:37:03.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: cephadm 2024-02-22T22:37:02.640033+0000 mgr.smithi049.pzczis (mgr.14180) 703 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.qdyutd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:37:03.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: cephadm 2024-02-22T22:37:02.642272+0000 mgr.smithi049.pzczis (mgr.14180) 704 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:37:03.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:03 smithi195 bash[18068]: cluster 2024-02-22T22:37:02.643659+0000 mgr.smithi049.pzczis (mgr.14180) 705 : cluster [DBG] pgmap v508: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 119 B/s rd, 0 op/s 2024-02-22T22:37:04.061 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:37:04.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:04 smithi049 bash[14150]: audit 2024-02-22T22:37:03.191784+0000 mgr.smithi049.pzczis (mgr.14180) 706 : audit [DBG] from='client.14988 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:37:04.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:04 smithi049 bash[14150]: cluster 2024-02-22T22:37:03.362683+0000 mon.smithi049 (mon.0) 865 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:37:04.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:04 smithi195 bash[18068]: audit 2024-02-22T22:37:03.191784+0000 mgr.smithi049.pzczis (mgr.14180) 706 : audit [DBG] from='client.14988 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:37:04.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:04 smithi195 bash[18068]: cluster 2024-02-22T22:37:03.362683+0000 mon.smithi049 (mon.0) 865 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:37:05.062 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:37:05.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:05 smithi049 bash[14150]: cluster 2024-02-22T22:37:04.644735+0000 mgr.smithi049.pzczis (mgr.14180) 707 : cluster [DBG] pgmap v509: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 B/s rd, 0 op/s 2024-02-22T22:37:05.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:05 smithi195 bash[18068]: cluster 2024-02-22T22:37:04.644735+0000 mgr.smithi049.pzczis (mgr.14180) 707 : cluster [DBG] pgmap v509: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 B/s rd, 0 op/s 2024-02-22T22:37:07.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:07 smithi195 bash[18068]: audit 2024-02-22T22:37:06.497297+0000 mon.smithi049 (mon.0) 866 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:37:07.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:07 smithi195 bash[18068]: cluster 2024-02-22T22:37:06.646816+0000 mgr.smithi049.pzczis (mgr.14180) 708 : cluster [DBG] pgmap v510: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 B/s rd, 0 op/s 2024-02-22T22:37:07.921 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:07 smithi049 bash[14150]: audit 2024-02-22T22:37:06.497297+0000 mon.smithi049 (mon.0) 866 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:37:07.921 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:07 smithi049 bash[14150]: cluster 2024-02-22T22:37:06.646816+0000 mgr.smithi049.pzczis (mgr.14180) 708 : cluster [DBG] pgmap v510: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 B/s rd, 0 op/s 2024-02-22T22:37:08.330 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:37:08.330 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:36:58.269975Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ttfaug on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\nDeploy daemon haproxy.nfs.foo.smithi195.ttfaug ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.636790Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.vdcdgs on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\nDeploy daemon haproxy.nfs.foo.smithi049.vdcdgs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.639897Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qdyutd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:37:08.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:08 smithi049 bash[14150]: audit 2024-02-22T22:37:08.322537+0000 mgr.smithi049.pzczis (mgr.14180) 709 : audit [DBG] from='client.14992 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:37:08.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:08 smithi049 bash[14150]: cluster 2024-02-22T22:37:08.647798+0000 mgr.smithi049.pzczis (mgr.14180) 710 : cluster [DBG] pgmap v511: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 B/s rd, 0 op/s 2024-02-22T22:37:09.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:08 smithi195 bash[18068]: audit 2024-02-22T22:37:08.322537+0000 mgr.smithi049.pzczis (mgr.14180) 709 : audit [DBG] from='client.14992 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:37:09.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:08 smithi195 bash[18068]: cluster 2024-02-22T22:37:08.647798+0000 mgr.smithi049.pzczis (mgr.14180) 710 : cluster [DBG] pgmap v511: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 B/s rd, 0 op/s 2024-02-22T22:37:09.074 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:37:10.076 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:37:11.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:10 smithi195 bash[18068]: cluster 2024-02-22T22:37:10.648712+0000 mgr.smithi049.pzczis (mgr.14180) 711 : cluster [DBG] pgmap v512: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 B/s rd, 0 op/s 2024-02-22T22:37:11.111 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:10 smithi049 bash[14150]: cluster 2024-02-22T22:37:10.648712+0000 mgr.smithi049.pzczis (mgr.14180) 711 : cluster [DBG] pgmap v512: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 B/s rd, 0 op/s 2024-02-22T22:37:13.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:12 smithi195 bash[18068]: cluster 2024-02-22T22:37:12.650627+0000 mgr.smithi049.pzczis (mgr.14180) 712 : cluster [DBG] pgmap v513: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 B/s rd, 0 op/s 2024-02-22T22:37:13.118 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:37:13.118 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:36:58.269975Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ttfaug on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\nDeploy daemon haproxy.nfs.foo.smithi195.ttfaug ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.636790Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.vdcdgs on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\nDeploy daemon haproxy.nfs.foo.smithi049.vdcdgs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.639897Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qdyutd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:37:13.151 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:12 smithi049 bash[14150]: cluster 2024-02-22T22:37:12.650627+0000 mgr.smithi049.pzczis (mgr.14180) 712 : cluster [DBG] pgmap v513: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 B/s rd, 0 op/s 2024-02-22T22:37:13.789 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:37:14.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:13 smithi195 bash[18068]: audit 2024-02-22T22:37:13.114280+0000 mgr.smithi049.pzczis (mgr.14180) 713 : audit [DBG] from='client.14996 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:37:14.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:13 smithi049 bash[14150]: audit 2024-02-22T22:37:13.114280+0000 mgr.smithi049.pzczis (mgr.14180) 713 : audit [DBG] from='client.14996 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:37:14.790 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:37:14.999 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:14 smithi049 bash[14150]: cluster 2024-02-22T22:37:14.651642+0000 mgr.smithi049.pzczis (mgr.14180) 714 : 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-22T22:37:15.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:14 smithi195 bash[18068]: cluster 2024-02-22T22:37:14.651642+0000 mgr.smithi049.pzczis (mgr.14180) 714 : 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-22T22:37:16.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:16 smithi049 bash[14150]: cluster 2024-02-22T22:37:16.653518+0000 mgr.smithi049.pzczis (mgr.14180) 715 : 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-22T22:37:17.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:16 smithi195 bash[18068]: cluster 2024-02-22T22:37:16.653518+0000 mgr.smithi049.pzczis (mgr.14180) 715 : 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-22T22:37:17.972 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:37:17.972 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:36:58.269975Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ttfaug on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\nDeploy daemon haproxy.nfs.foo.smithi195.ttfaug ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.636790Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.vdcdgs on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\nDeploy daemon haproxy.nfs.foo.smithi049.vdcdgs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.639897Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qdyutd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:37:18.737 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:37:19.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:18 smithi195 bash[18068]: audit 2024-02-22T22:37:17.963667+0000 mgr.smithi049.pzczis (mgr.14180) 716 : audit [DBG] from='client.15000 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:37:19.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:18 smithi195 bash[18068]: cluster 2024-02-22T22:37:18.655208+0000 mgr.smithi049.pzczis (mgr.14180) 717 : cluster [DBG] pgmap v516: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:37:19.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:18 smithi049 bash[14150]: audit 2024-02-22T22:37:17.963667+0000 mgr.smithi049.pzczis (mgr.14180) 716 : audit [DBG] from='client.15000 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:37:19.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:18 smithi049 bash[14150]: cluster 2024-02-22T22:37:18.655208+0000 mgr.smithi049.pzczis (mgr.14180) 717 : cluster [DBG] pgmap v516: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:37:19.738 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:37:21.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:20 smithi195 bash[18068]: cluster 2024-02-22T22:37:20.656879+0000 mgr.smithi049.pzczis (mgr.14180) 718 : 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-22T22:37:21.098 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:20 smithi049 bash[14150]: cluster 2024-02-22T22:37:20.656879+0000 mgr.smithi049.pzczis (mgr.14180) 718 : 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-22T22:37:22.832 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:37:22.832 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:36:58.269975Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ttfaug on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\nDeploy daemon haproxy.nfs.foo.smithi195.ttfaug ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.636790Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.vdcdgs on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\nDeploy daemon haproxy.nfs.foo.smithi049.vdcdgs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.639897Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qdyutd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:37:22.999 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:22 smithi049 bash[14150]: cluster 2024-02-22T22:37:22.661194+0000 mgr.smithi049.pzczis (mgr.14180) 719 : cluster [DBG] pgmap v518: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:37:23.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:22 smithi195 bash[18068]: cluster 2024-02-22T22:37:22.661194+0000 mgr.smithi049.pzczis (mgr.14180) 719 : cluster [DBG] pgmap v518: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:37:23.565 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:37:23.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:23 smithi049 bash[14150]: audit 2024-02-22T22:37:22.827769+0000 mgr.smithi049.pzczis (mgr.14180) 720 : audit [DBG] from='client.15004 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:37:24.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:23 smithi195 bash[18068]: audit 2024-02-22T22:37:22.827769+0000 mgr.smithi049.pzczis (mgr.14180) 720 : audit [DBG] from='client.15004 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:37:24.566 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:37:24.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:24 smithi049 bash[14150]: cluster 2024-02-22T22:37:24.662273+0000 mgr.smithi049.pzczis (mgr.14180) 721 : 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-22T22:37:25.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:24 smithi195 bash[18068]: cluster 2024-02-22T22:37:24.662273+0000 mgr.smithi049.pzczis (mgr.14180) 721 : 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-22T22:37:26.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:26 smithi049 bash[14150]: cluster 2024-02-22T22:37:26.664293+0000 mgr.smithi049.pzczis (mgr.14180) 722 : 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-22T22:37:27.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:26 smithi195 bash[18068]: cluster 2024-02-22T22:37:26.664293+0000 mgr.smithi049.pzczis (mgr.14180) 722 : 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-22T22:37:27.734 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:37:27.735 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:36:58.269975Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ttfaug on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\nDeploy daemon haproxy.nfs.foo.smithi195.ttfaug ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.636790Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.vdcdgs on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\nDeploy daemon haproxy.nfs.foo.smithi049.vdcdgs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.639897Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qdyutd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:37:28.435 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:37:29.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:28 smithi195 bash[18068]: audit 2024-02-22T22:37:27.725699+0000 mgr.smithi049.pzczis (mgr.14180) 723 : audit [DBG] from='client.15008 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:37:29.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:28 smithi195 bash[18068]: cluster 2024-02-22T22:37:28.665926+0000 mgr.smithi049.pzczis (mgr.14180) 724 : cluster [DBG] pgmap v521: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:37:29.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:28 smithi049 bash[14150]: audit 2024-02-22T22:37:27.725699+0000 mgr.smithi049.pzczis (mgr.14180) 723 : audit [DBG] from='client.15008 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:37:29.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:28 smithi049 bash[14150]: cluster 2024-02-22T22:37:28.665926+0000 mgr.smithi049.pzczis (mgr.14180) 724 : cluster [DBG] pgmap v521: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:37:29.436 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:37:30.873 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:30 smithi049 bash[14150]: cluster 2024-02-22T22:37:30.667921+0000 mgr.smithi049.pzczis (mgr.14180) 725 : 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-22T22:37:31.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:30 smithi195 bash[18068]: cluster 2024-02-22T22:37:30.667921+0000 mgr.smithi049.pzczis (mgr.14180) 725 : 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-22T22:37:32.484 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:37:32.485 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:36:58.269975Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ttfaug on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\nDeploy daemon haproxy.nfs.foo.smithi195.ttfaug ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.636790Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.vdcdgs on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\nDeploy daemon haproxy.nfs.foo.smithi049.vdcdgs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.639897Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qdyutd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:37:32.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:32 smithi049 bash[14150]: audit 2024-02-22T22:37:32.477243+0000 mgr.smithi049.pzczis (mgr.14180) 726 : audit [DBG] from='client.15012 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:37:32.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:32 smithi049 bash[14150]: cluster 2024-02-22T22:37:32.669638+0000 mgr.smithi049.pzczis (mgr.14180) 727 : cluster [DBG] pgmap v523: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:37:33.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:32 smithi195 bash[18068]: audit 2024-02-22T22:37:32.477243+0000 mgr.smithi049.pzczis (mgr.14180) 726 : audit [DBG] from='client.15012 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:37:33.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:32 smithi195 bash[18068]: cluster 2024-02-22T22:37:32.669638+0000 mgr.smithi049.pzczis (mgr.14180) 727 : cluster [DBG] pgmap v523: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:37:33.236 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:37:34.237 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:37:35.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:34 smithi195 bash[18068]: cluster 2024-02-22T22:37:34.670656+0000 mgr.smithi049.pzczis (mgr.14180) 728 : 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-22T22:37:35.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:34 smithi049 bash[14150]: cluster 2024-02-22T22:37:34.670656+0000 mgr.smithi049.pzczis (mgr.14180) 728 : 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-22T22:37:36.908 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:36 smithi049 bash[14150]: cluster 2024-02-22T22:37:36.672298+0000 mgr.smithi049.pzczis (mgr.14180) 729 : 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-22T22:37:37.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:36 smithi195 bash[18068]: cluster 2024-02-22T22:37:36.672298+0000 mgr.smithi049.pzczis (mgr.14180) 729 : 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-22T22:37:37.344 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:37:37.345 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:36:58.269975Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ttfaug on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\nDeploy daemon haproxy.nfs.foo.smithi195.ttfaug ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.636790Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.vdcdgs on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\nDeploy daemon haproxy.nfs.foo.smithi049.vdcdgs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.639897Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qdyutd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:37:37.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:37 smithi049 bash[14150]: audit 2024-02-22T22:37:37.336613+0000 mgr.smithi049.pzczis (mgr.14180) 730 : audit [DBG] from='client.15016 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:37:38.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:37 smithi195 bash[18068]: audit 2024-02-22T22:37:37.336613+0000 mgr.smithi049.pzczis (mgr.14180) 730 : audit [DBG] from='client.15016 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:37:38.113 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:37:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:38 smithi195 bash[18068]: cluster 2024-02-22T22:37:38.673905+0000 mgr.smithi049.pzczis (mgr.14180) 731 : cluster [DBG] pgmap v526: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:37:39.114 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:37:39.126 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:38 smithi049 bash[14150]: cluster 2024-02-22T22:37:38.673905+0000 mgr.smithi049.pzczis (mgr.14180) 731 : cluster [DBG] pgmap v526: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:37:41.045 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:40 smithi049 bash[14150]: cluster 2024-02-22T22:37:40.674865+0000 mgr.smithi049.pzczis (mgr.14180) 732 : 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-22T22:37:41.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:40 smithi195 bash[18068]: cluster 2024-02-22T22:37:40.674865+0000 mgr.smithi049.pzczis (mgr.14180) 732 : 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-22T22:37:42.267 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:37:42.267 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:36:58.269975Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ttfaug on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\nDeploy daemon haproxy.nfs.foo.smithi195.ttfaug ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.636790Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.vdcdgs on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\nDeploy daemon haproxy.nfs.foo.smithi049.vdcdgs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.639897Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qdyutd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:37:42.965 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:37:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:42 smithi195 bash[18068]: audit 2024-02-22T22:37:42.259205+0000 mgr.smithi049.pzczis (mgr.14180) 733 : audit [DBG] from='client.15020 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:37:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:42 smithi195 bash[18068]: cluster 2024-02-22T22:37:42.675799+0000 mgr.smithi049.pzczis (mgr.14180) 734 : cluster [DBG] pgmap v528: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:37:43.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:42 smithi049 bash[14150]: audit 2024-02-22T22:37:42.259205+0000 mgr.smithi049.pzczis (mgr.14180) 733 : audit [DBG] from='client.15020 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:37:43.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:42 smithi049 bash[14150]: cluster 2024-02-22T22:37:42.675799+0000 mgr.smithi049.pzczis (mgr.14180) 734 : cluster [DBG] pgmap v528: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:37:43.967 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:37:45.047 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:44 smithi049 bash[14150]: cluster 2024-02-22T22:37:44.676764+0000 mgr.smithi049.pzczis (mgr.14180) 735 : 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-22T22:37:45.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:44 smithi195 bash[18068]: cluster 2024-02-22T22:37:44.676764+0000 mgr.smithi049.pzczis (mgr.14180) 735 : 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-22T22:37:46.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:46 smithi049 bash[14150]: cluster 2024-02-22T22:37:46.678711+0000 mgr.smithi049.pzczis (mgr.14180) 736 : 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-22T22:37:47.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:46 smithi195 bash[18068]: cluster 2024-02-22T22:37:46.678711+0000 mgr.smithi049.pzczis (mgr.14180) 736 : 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-22T22:37:47.161 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:37:47.161 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:36:58.269975Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ttfaug on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\nDeploy daemon haproxy.nfs.foo.smithi195.ttfaug ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.636790Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.vdcdgs on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\nDeploy daemon haproxy.nfs.foo.smithi049.vdcdgs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.639897Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qdyutd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:37:47.932 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:37:48.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:47 smithi195 bash[18068]: audit 2024-02-22T22:37:47.153313+0000 mgr.smithi049.pzczis (mgr.14180) 737 : audit [DBG] from='client.15024 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:37:48.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:47 smithi049 bash[14150]: audit 2024-02-22T22:37:47.153313+0000 mgr.smithi049.pzczis (mgr.14180) 737 : audit [DBG] from='client.15024 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:37:48.934 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:37:49.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:48 smithi195 bash[18068]: cluster 2024-02-22T22:37:48.680363+0000 mgr.smithi049.pzczis (mgr.14180) 738 : cluster [DBG] pgmap v531: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:37:49.130 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:48 smithi049 bash[14150]: cluster 2024-02-22T22:37:48.680363+0000 mgr.smithi049.pzczis (mgr.14180) 738 : cluster [DBG] pgmap v531: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:37:51.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:50 smithi195 bash[18068]: cluster 2024-02-22T22:37:50.682155+0000 mgr.smithi049.pzczis (mgr.14180) 739 : 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-22T22:37:51.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:50 smithi049 bash[14150]: cluster 2024-02-22T22:37:50.682155+0000 mgr.smithi049.pzczis (mgr.14180) 739 : 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-22T22:37:52.047 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:37:52.048 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:36:58.269975Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ttfaug on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\nDeploy daemon haproxy.nfs.foo.smithi195.ttfaug ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.636790Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.vdcdgs on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\nDeploy daemon haproxy.nfs.foo.smithi049.vdcdgs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.639897Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qdyutd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:37:52.723 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:37:53.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:52 smithi195 bash[18068]: audit 2024-02-22T22:37:52.039365+0000 mgr.smithi049.pzczis (mgr.14180) 740 : audit [DBG] from='client.15028 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:37:53.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:52 smithi195 bash[18068]: cluster 2024-02-22T22:37:52.683839+0000 mgr.smithi049.pzczis (mgr.14180) 741 : cluster [DBG] pgmap v533: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:37:53.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:52 smithi049 bash[14150]: audit 2024-02-22T22:37:52.039365+0000 mgr.smithi049.pzczis (mgr.14180) 740 : audit [DBG] from='client.15028 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:37:53.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:52 smithi049 bash[14150]: cluster 2024-02-22T22:37:52.683839+0000 mgr.smithi049.pzczis (mgr.14180) 741 : cluster [DBG] pgmap v533: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:37:53.724 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:37:55.034 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:54 smithi049 bash[14150]: cluster 2024-02-22T22:37:54.684410+0000 mgr.smithi049.pzczis (mgr.14180) 742 : 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-22T22:37:55.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:54 smithi195 bash[18068]: cluster 2024-02-22T22:37:54.684410+0000 mgr.smithi049.pzczis (mgr.14180) 742 : 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-22T22:37:56.851 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:37:56.851 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:36:58.269975Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ttfaug on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\nDeploy daemon haproxy.nfs.foo.smithi195.ttfaug ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.636790Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.vdcdgs on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\nDeploy daemon haproxy.nfs.foo.smithi049.vdcdgs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.639897Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qdyutd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:37:57.051 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:56 smithi049 bash[14150]: cluster 2024-02-22T22:37:56.686255+0000 mgr.smithi049.pzczis (mgr.14180) 743 : 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-22T22:37:57.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:56 smithi195 bash[18068]: cluster 2024-02-22T22:37:56.686255+0000 mgr.smithi049.pzczis (mgr.14180) 743 : 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-22T22:37:57.625 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:37:57.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:57 smithi049 bash[14150]: audit 2024-02-22T22:37:56.847446+0000 mgr.smithi049.pzczis (mgr.14180) 744 : audit [DBG] from='client.15032 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:37:58.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:57 smithi195 bash[18068]: audit 2024-02-22T22:37:56.847446+0000 mgr.smithi049.pzczis (mgr.14180) 744 : audit [DBG] from='client.15032 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:37:58.626 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:37:58.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:37:58 smithi049 bash[14150]: cluster 2024-02-22T22:37:58.687691+0000 mgr.smithi049.pzczis (mgr.14180) 745 : cluster [DBG] pgmap v536: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:37:59.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:37:58 smithi195 bash[18068]: cluster 2024-02-22T22:37:58.687691+0000 mgr.smithi049.pzczis (mgr.14180) 745 : cluster [DBG] pgmap v536: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:38:00.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:00 smithi049 bash[14150]: cluster 2024-02-22T22:38:00.689465+0000 mgr.smithi049.pzczis (mgr.14180) 746 : 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-22T22:38:01.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:00 smithi195 bash[18068]: cluster 2024-02-22T22:38:00.689465+0000 mgr.smithi049.pzczis (mgr.14180) 746 : 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-22T22:38:01.842 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:38:01.842 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:36:58.269975Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ttfaug on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\nDeploy daemon haproxy.nfs.foo.smithi195.ttfaug ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.636790Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.vdcdgs on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\nDeploy daemon haproxy.nfs.foo.smithi049.vdcdgs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.639897Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qdyutd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:38:02.577 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:38:02.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:02 smithi049 bash[14150]: audit 2024-02-22T22:38:01.831667+0000 mgr.smithi049.pzczis (mgr.14180) 747 : audit [DBG] from='client.15036 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:38:02.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:02 smithi049 bash[14150]: audit 2024-02-22T22:38:02.647155+0000 mon.smithi049 (mon.0) 867 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:38:02.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:02 smithi049 bash[14150]: cluster 2024-02-22T22:38:02.691238+0000 mgr.smithi049.pzczis (mgr.14180) 748 : cluster [DBG] pgmap v538: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:38:03.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:02 smithi195 bash[18068]: audit 2024-02-22T22:38:01.831667+0000 mgr.smithi049.pzczis (mgr.14180) 747 : audit [DBG] from='client.15036 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:38:03.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:02 smithi195 bash[18068]: audit 2024-02-22T22:38:02.647155+0000 mon.smithi049 (mon.0) 867 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:38:03.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:02 smithi195 bash[18068]: cluster 2024-02-22T22:38:02.691238+0000 mgr.smithi049.pzczis (mgr.14180) 748 : cluster [DBG] pgmap v538: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:38:03.578 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:38:03.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:03 smithi049 bash[14150]: audit 2024-02-22T22:38:02.935322+0000 mon.smithi049 (mon.0) 868 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:38:03.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:03 smithi049 bash[14150]: audit 2024-02-22T22:38:02.936553+0000 mon.smithi049 (mon.0) 869 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:38:03.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:03 smithi049 bash[14150]: audit 2024-02-22T22:38:02.944015+0000 mon.smithi049 (mon.0) 870 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:38:03.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:03 smithi049 bash[14150]: cluster 2024-02-22T22:38:02.944986+0000 mgr.smithi049.pzczis (mgr.14180) 749 : cluster [DBG] pgmap v539: 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-22T22:38:03.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:03 smithi049 bash[14150]: audit 2024-02-22T22:38:02.951102+0000 mon.smithi049 (mon.0) 871 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:38:03.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:03 smithi049 bash[14150]: audit 2024-02-22T22:38:02.964546+0000 mon.smithi049 (mon.0) 872 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:38:03.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:03 smithi049 bash[14150]: cephadm 2024-02-22T22:38:02.968202+0000 mgr.smithi049.pzczis (mgr.14180) 750 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.stvucr on smithi195 2024-02-22T22:38:04.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:03 smithi195 bash[18068]: audit 2024-02-22T22:38:02.935322+0000 mon.smithi049 (mon.0) 868 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:38:04.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:03 smithi195 bash[18068]: audit 2024-02-22T22:38:02.936553+0000 mon.smithi049 (mon.0) 869 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:38:04.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:03 smithi195 bash[18068]: audit 2024-02-22T22:38:02.944015+0000 mon.smithi049 (mon.0) 870 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:38:04.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:03 smithi195 bash[18068]: cluster 2024-02-22T22:38:02.944986+0000 mgr.smithi049.pzczis (mgr.14180) 749 : cluster [DBG] pgmap v539: 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-22T22:38:04.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:03 smithi195 bash[18068]: audit 2024-02-22T22:38:02.951102+0000 mon.smithi049 (mon.0) 871 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:38:04.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:03 smithi195 bash[18068]: audit 2024-02-22T22:38:02.964546+0000 mon.smithi049 (mon.0) 872 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:38:04.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:03 smithi195 bash[18068]: cephadm 2024-02-22T22:38:02.968202+0000 mgr.smithi049.pzczis (mgr.14180) 750 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.stvucr on smithi195 2024-02-22T22:38:04.892 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:04 smithi049 bash[14150]: cluster 2024-02-22T22:38:03.940892+0000 mon.smithi049 (mon.0) 873 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:38:04.892 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:04 smithi049 bash[14150]: cluster 2024-02-22T22:38:03.940950+0000 mon.smithi049 (mon.0) 874 : cluster [INF] Cluster is now healthy 2024-02-22T22:38:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:04 smithi195 bash[18068]: cluster 2024-02-22T22:38:03.940892+0000 mon.smithi049 (mon.0) 873 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:38:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:04 smithi195 bash[18068]: cluster 2024-02-22T22:38:03.940950+0000 mon.smithi049 (mon.0) 874 : cluster [INF] Cluster is now healthy 2024-02-22T22:38:06.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:05 smithi195 bash[18068]: cluster 2024-02-22T22:38:04.945596+0000 mgr.smithi049.pzczis (mgr.14180) 751 : cluster [DBG] pgmap v540: 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-22T22:38:06.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:05 smithi049 bash[14150]: cluster 2024-02-22T22:38:04.945596+0000 mgr.smithi049.pzczis (mgr.14180) 751 : cluster [DBG] pgmap v540: 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-22T22:38:06.618 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:38:06.619 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:35:53.993692Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mynuok on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:36:58.269975Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ttfaug on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-ttfaug\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.ttfaug\nDeploy daemon haproxy.nfs.foo.smithi195.ttfaug ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.636790Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.vdcdgs on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-vdcdgs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.vdcdgs\nDeploy daemon haproxy.nfs.foo.smithi049.vdcdgs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:37:02.639897Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qdyutd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:38:06.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:06 smithi049 bash[14150]: audit 2024-02-22T22:38:06.609970+0000 mgr.smithi049.pzczis (mgr.14180) 752 : audit [DBG] from='client.15040 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:38:07.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:06 smithi195 bash[18068]: audit 2024-02-22T22:38:06.609970+0000 mgr.smithi049.pzczis (mgr.14180) 752 : audit [DBG] from='client.15040 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:38:07.396 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:38:08.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: cephadm 2024-02-22T22:38:06.794571+0000 mgr.smithi049.pzczis (mgr.14180) 753 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr 2024-02-22T22:38:08.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:38:08.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr 2024-02-22T22:38:08.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr 2024-02-22T22:38:08.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:38:08.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr 2024-02-22T22:38:08.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.stvucr ... 2024-02-22T22:38:08.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:38:08.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:38:08.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:38:08.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:38:08.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:38:08.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:38:08.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:38:08.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:38:08.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:38:08.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:38:08.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr 2024-02-22T22:38:08.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:38:08.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr 2024-02-22T22:38:08.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr 2024-02-22T22:38:08.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:38:08.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr 2024-02-22T22:38:08.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.stvucr ... 2024-02-22T22:38:08.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:38:08.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:38:08.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:38:08.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:38:08.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:38:08.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: cephadm 2024-02-22T22:38:06.794888+0000 mgr.smithi049.pzczis (mgr.14180) 754 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.stvucr 2024-02-22T22:38:08.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: audit 2024-02-22T22:38:06.795343+0000 mon.smithi049 (mon.0) 875 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.stvucr"}]: dispatch 2024-02-22T22:38:08.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: cephadm 2024-02-22T22:38:06.796491+0000 mgr.smithi049.pzczis (mgr.14180) 755 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.stvucr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr 2024-02-22T22:38:08.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:38:08.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr 2024-02-22T22:38:08.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr 2024-02-22T22:38:08.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:38:08.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr 2024-02-22T22:38:08.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.stvucr ... 2024-02-22T22:38:08.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:38:08.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:38:08.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:38:08.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:38:08.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:38:08.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: cephadm 2024-02-22T22:38:06.799044+0000 mgr.smithi049.pzczis (mgr.14180) 756 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.rwfcjb on smithi049 2024-02-22T22:38:08.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: cluster 2024-02-22T22:38:06.947182+0000 mgr.smithi049.pzczis (mgr.14180) 757 : cluster [DBG] pgmap v541: 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-22T22:38:08.058 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:07 smithi195 bash[18068]: audit 2024-02-22T22:38:07.660651+0000 mon.smithi049 (mon.0) 876 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:38:08.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: cephadm 2024-02-22T22:38:06.794571+0000 mgr.smithi049.pzczis (mgr.14180) 753 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr 2024-02-22T22:38:08.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:38:08.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr 2024-02-22T22:38:08.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr 2024-02-22T22:38:08.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:38:08.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr 2024-02-22T22:38:08.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.stvucr ... 2024-02-22T22:38:08.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:38:08.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:38:08.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:38:08.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:38:08.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:38:08.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:38:08.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:38:08.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:38:08.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:38:08.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:38:08.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr 2024-02-22T22:38:08.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:38:08.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr 2024-02-22T22:38:08.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr 2024-02-22T22:38:08.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:38:08.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr 2024-02-22T22:38:08.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.stvucr ... 2024-02-22T22:38:08.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:38:08.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:38:08.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:38:08.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:38:08.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:38:08.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: cephadm 2024-02-22T22:38:06.794888+0000 mgr.smithi049.pzczis (mgr.14180) 754 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.stvucr 2024-02-22T22:38:08.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: audit 2024-02-22T22:38:06.795343+0000 mon.smithi049 (mon.0) 875 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.stvucr"}]: dispatch 2024-02-22T22:38:08.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: cephadm 2024-02-22T22:38:06.796491+0000 mgr.smithi049.pzczis (mgr.14180) 755 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.stvucr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr 2024-02-22T22:38:08.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:38:08.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr 2024-02-22T22:38:08.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr 2024-02-22T22:38:08.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:38:08.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr 2024-02-22T22:38:08.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.stvucr ... 2024-02-22T22:38:08.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:38:08.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:38:08.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:38:08.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:38:08.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:38:08.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: cephadm 2024-02-22T22:38:06.799044+0000 mgr.smithi049.pzczis (mgr.14180) 756 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.rwfcjb on smithi049 2024-02-22T22:38:08.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: cluster 2024-02-22T22:38:06.947182+0000 mgr.smithi049.pzczis (mgr.14180) 757 : cluster [DBG] pgmap v541: 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-22T22:38:08.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:07 smithi049 bash[14150]: audit 2024-02-22T22:38:07.660651+0000 mon.smithi049 (mon.0) 876 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:38:08.398 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:38:10.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:10 smithi049 bash[14150]: cluster 2024-02-22T22:38:08.948644+0000 mgr.smithi049.pzczis (mgr.14180) 758 : 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-22T22:38:10.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:10 smithi195 bash[18068]: cluster 2024-02-22T22:38:08.948644+0000 mgr.smithi049.pzczis (mgr.14180) 758 : 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-22T22:38:12.098 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:38:12.098 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:06.796352Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.stvucr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\nDeploy daemon haproxy.nfs.foo.smithi195.stvucr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.110403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.rwfcjb on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\nDeploy daemon haproxy.nfs.foo.smithi049.rwfcjb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.114647Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jnpyhf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:38:12.284 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: cluster 2024-02-22T22:38:10.950313+0000 mgr.smithi049.pzczis (mgr.14180) 759 : 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-22T22:38:12.284 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: cephadm 2024-02-22T22:38:11.107970+0000 mgr.smithi049.pzczis (mgr.14180) 760 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb 2024-02-22T22:38:12.284 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:38:12.284 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb 2024-02-22T22:38:12.284 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb 2024-02-22T22:38:12.284 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:38:12.284 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb 2024-02-22T22:38:12.284 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.rwfcjb ... 2024-02-22T22:38:12.284 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:38:12.285 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:38:12.285 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:38:12.285 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:38:12.285 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:38:12.285 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:38:12.285 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:38:12.285 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:38:12.285 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:38:12.285 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:38:12.285 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb 2024-02-22T22:38:12.285 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:38:12.285 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb 2024-02-22T22:38:12.285 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb 2024-02-22T22:38:12.285 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:38:12.286 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb 2024-02-22T22:38:12.286 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.rwfcjb ... 2024-02-22T22:38:12.286 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:38:12.286 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:38:12.286 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:38:12.286 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:38:12.286 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:38:12.287 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: cephadm 2024-02-22T22:38:11.108484+0000 mgr.smithi049.pzczis (mgr.14180) 761 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.rwfcjb 2024-02-22T22:38:12.287 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: audit 2024-02-22T22:38:11.109203+0000 mon.smithi049 (mon.0) 877 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.rwfcjb"}]: dispatch 2024-02-22T22:38:12.287 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: cephadm 2024-02-22T22:38:11.110629+0000 mgr.smithi049.pzczis (mgr.14180) 762 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.rwfcjb on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb 2024-02-22T22:38:12.287 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:38:12.287 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb 2024-02-22T22:38:12.287 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb 2024-02-22T22:38:12.287 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:38:12.287 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb 2024-02-22T22:38:12.287 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.rwfcjb ... 2024-02-22T22:38:12.287 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:38:12.287 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:38:12.287 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:38:12.287 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:38:12.287 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:38:12.287 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: cephadm 2024-02-22T22:38:11.114896+0000 mgr.smithi049.pzczis (mgr.14180) 763 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.jnpyhf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:38:12.287 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: cephadm 2024-02-22T22:38:11.116923+0000 mgr.smithi049.pzczis (mgr.14180) 764 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:38:12.288 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: cluster 2024-02-22T22:38:11.118034+0000 mgr.smithi049.pzczis (mgr.14180) 765 : cluster [DBG] pgmap v544: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:38:12.288 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:12 smithi049 bash[14150]: audit 2024-02-22T22:38:11.548680+0000 mon.smithi049 (mon.0) 878 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:38:12.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: cluster 2024-02-22T22:38:10.950313+0000 mgr.smithi049.pzczis (mgr.14180) 759 : 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-22T22:38:12.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: cephadm 2024-02-22T22:38:11.107970+0000 mgr.smithi049.pzczis (mgr.14180) 760 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb 2024-02-22T22:38:12.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:38:12.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb 2024-02-22T22:38:12.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb 2024-02-22T22:38:12.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:38:12.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb 2024-02-22T22:38:12.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.rwfcjb ... 2024-02-22T22:38:12.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:38:12.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:38:12.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:38:12.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:38:12.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:38:12.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:38:12.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:38:12.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:38:12.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:38:12.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:38:12.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb 2024-02-22T22:38:12.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:38:12.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb 2024-02-22T22:38:12.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb 2024-02-22T22:38:12.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:38:12.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb 2024-02-22T22:38:12.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.rwfcjb ... 2024-02-22T22:38:12.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:38:12.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:38:12.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:38:12.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:38:12.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:38:12.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: cephadm 2024-02-22T22:38:11.108484+0000 mgr.smithi049.pzczis (mgr.14180) 761 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.rwfcjb 2024-02-22T22:38:12.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: audit 2024-02-22T22:38:11.109203+0000 mon.smithi049 (mon.0) 877 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.rwfcjb"}]: dispatch 2024-02-22T22:38:12.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: cephadm 2024-02-22T22:38:11.110629+0000 mgr.smithi049.pzczis (mgr.14180) 762 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.rwfcjb on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb 2024-02-22T22:38:12.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:38:12.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb 2024-02-22T22:38:12.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb 2024-02-22T22:38:12.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:38:12.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb 2024-02-22T22:38:12.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.rwfcjb ... 2024-02-22T22:38:12.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:38:12.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:38:12.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:38:12.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:38:12.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:38:12.308 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: cephadm 2024-02-22T22:38:11.114896+0000 mgr.smithi049.pzczis (mgr.14180) 763 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.jnpyhf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:38:12.308 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: cephadm 2024-02-22T22:38:11.116923+0000 mgr.smithi049.pzczis (mgr.14180) 764 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:38:12.308 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: cluster 2024-02-22T22:38:11.118034+0000 mgr.smithi049.pzczis (mgr.14180) 765 : cluster [DBG] pgmap v544: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:38:12.308 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:12 smithi195 bash[18068]: audit 2024-02-22T22:38:11.548680+0000 mon.smithi049 (mon.0) 878 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:38:12.883 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:38:13.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:13 smithi049 bash[14150]: cluster 2024-02-22T22:38:12.008185+0000 mon.smithi049 (mon.0) 879 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:38:13.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:13 smithi049 bash[14150]: audit 2024-02-22T22:38:12.094402+0000 mgr.smithi049.pzczis (mgr.14180) 766 : audit [DBG] from='client.15044 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:38:13.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:13 smithi195 bash[18068]: cluster 2024-02-22T22:38:12.008185+0000 mon.smithi049 (mon.0) 879 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:38:13.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:13 smithi195 bash[18068]: audit 2024-02-22T22:38:12.094402+0000 mgr.smithi049.pzczis (mgr.14180) 766 : audit [DBG] from='client.15044 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:38:13.884 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:38:14.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:14 smithi049 bash[14150]: cluster 2024-02-22T22:38:13.119835+0000 mgr.smithi049.pzczis (mgr.14180) 767 : cluster [DBG] pgmap v545: 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-22T22:38:14.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:14 smithi195 bash[18068]: cluster 2024-02-22T22:38:13.119835+0000 mgr.smithi049.pzczis (mgr.14180) 767 : cluster [DBG] pgmap v545: 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-22T22:38:16.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:16 smithi049 bash[14150]: cluster 2024-02-22T22:38:15.121013+0000 mgr.smithi049.pzczis (mgr.14180) 768 : cluster [DBG] pgmap v546: 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-22T22:38:16.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:16 smithi195 bash[18068]: cluster 2024-02-22T22:38:15.121013+0000 mgr.smithi049.pzczis (mgr.14180) 768 : cluster [DBG] pgmap v546: 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-22T22:38:16.911 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:38:16.911 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:06.796352Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.stvucr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\nDeploy daemon haproxy.nfs.foo.smithi195.stvucr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.110403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.rwfcjb on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\nDeploy daemon haproxy.nfs.foo.smithi049.rwfcjb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.114647Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jnpyhf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:38:17.707 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:38:18.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:18 smithi049 bash[14150]: audit 2024-02-22T22:38:16.903391+0000 mgr.smithi049.pzczis (mgr.14180) 769 : audit [DBG] from='client.15048 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:38:18.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:18 smithi049 bash[14150]: cluster 2024-02-22T22:38:17.122081+0000 mgr.smithi049.pzczis (mgr.14180) 770 : cluster [DBG] pgmap v547: 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-22T22:38:18.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:18 smithi195 bash[18068]: audit 2024-02-22T22:38:16.903391+0000 mgr.smithi049.pzczis (mgr.14180) 769 : audit [DBG] from='client.15048 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:38:18.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:18 smithi195 bash[18068]: cluster 2024-02-22T22:38:17.122081+0000 mgr.smithi049.pzczis (mgr.14180) 770 : cluster [DBG] pgmap v547: 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-22T22:38:18.708 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:38:20.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:20 smithi049 bash[14150]: cluster 2024-02-22T22:38:19.123764+0000 mgr.smithi049.pzczis (mgr.14180) 771 : cluster [DBG] pgmap v548: 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-22T22:38:20.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:20 smithi195 bash[18068]: cluster 2024-02-22T22:38:19.123764+0000 mgr.smithi049.pzczis (mgr.14180) 771 : cluster [DBG] pgmap v548: 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-22T22:38:21.913 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:38:21.914 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:06.796352Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.stvucr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\nDeploy daemon haproxy.nfs.foo.smithi195.stvucr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.110403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.rwfcjb on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\nDeploy daemon haproxy.nfs.foo.smithi049.rwfcjb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.114647Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jnpyhf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:38:22.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:22 smithi049 bash[14150]: cluster 2024-02-22T22:38:21.124795+0000 mgr.smithi049.pzczis (mgr.14180) 772 : cluster [DBG] pgmap v549: 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-22T22:38:22.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:22 smithi195 bash[18068]: cluster 2024-02-22T22:38:21.124795+0000 mgr.smithi049.pzczis (mgr.14180) 772 : cluster [DBG] pgmap v549: 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-22T22:38:22.710 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:38:23.710 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:38:23.912 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:23 smithi049 bash[14150]: audit 2024-02-22T22:38:21.903906+0000 mgr.smithi049.pzczis (mgr.14180) 773 : audit [DBG] from='client.15052 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:38:23.913 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:23 smithi049 bash[14150]: audit 2024-02-22T22:38:22.660343+0000 mon.smithi049 (mon.0) 880 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:38:24.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:23 smithi195 bash[18068]: audit 2024-02-22T22:38:21.903906+0000 mgr.smithi049.pzczis (mgr.14180) 773 : audit [DBG] from='client.15052 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:38:24.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:23 smithi195 bash[18068]: audit 2024-02-22T22:38:22.660343+0000 mon.smithi049 (mon.0) 880 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:38:24.926 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:24 smithi049 bash[14150]: cluster 2024-02-22T22:38:23.126399+0000 mgr.smithi049.pzczis (mgr.14180) 774 : cluster [DBG] pgmap v550: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:38:25.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:24 smithi195 bash[18068]: cluster 2024-02-22T22:38:23.126399+0000 mgr.smithi049.pzczis (mgr.14180) 774 : cluster [DBG] pgmap v550: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:38:26.780 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:38:26.780 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:06.796352Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.stvucr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\nDeploy daemon haproxy.nfs.foo.smithi195.stvucr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.110403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.rwfcjb on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\nDeploy daemon haproxy.nfs.foo.smithi049.rwfcjb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.114647Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jnpyhf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:38:26.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:26 smithi049 bash[14150]: cluster 2024-02-22T22:38:25.127459+0000 mgr.smithi049.pzczis (mgr.14180) 775 : cluster [DBG] pgmap v551: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:38:27.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:26 smithi195 bash[18068]: cluster 2024-02-22T22:38:25.127459+0000 mgr.smithi049.pzczis (mgr.14180) 775 : cluster [DBG] pgmap v551: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:38:27.488 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:38:28.490 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:38:28.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:28 smithi049 bash[14150]: audit 2024-02-22T22:38:26.772149+0000 mgr.smithi049.pzczis (mgr.14180) 776 : audit [DBG] from='client.15056 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:38:28.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:28 smithi049 bash[14150]: cluster 2024-02-22T22:38:27.129024+0000 mgr.smithi049.pzczis (mgr.14180) 777 : cluster [DBG] pgmap v552: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:38:29.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:28 smithi195 bash[18068]: audit 2024-02-22T22:38:26.772149+0000 mgr.smithi049.pzczis (mgr.14180) 776 : audit [DBG] from='client.15056 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:38:29.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:28 smithi195 bash[18068]: cluster 2024-02-22T22:38:27.129024+0000 mgr.smithi049.pzczis (mgr.14180) 777 : cluster [DBG] pgmap v552: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:38:30.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:30 smithi049 bash[14150]: cluster 2024-02-22T22:38:29.130705+0000 mgr.smithi049.pzczis (mgr.14180) 778 : cluster [DBG] pgmap v553: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:38:31.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:30 smithi195 bash[18068]: cluster 2024-02-22T22:38:29.130705+0000 mgr.smithi049.pzczis (mgr.14180) 778 : cluster [DBG] pgmap v553: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:38:31.550 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:38:31.550 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:06.796352Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.stvucr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\nDeploy daemon haproxy.nfs.foo.smithi195.stvucr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.110403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.rwfcjb on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\nDeploy daemon haproxy.nfs.foo.smithi049.rwfcjb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.114647Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jnpyhf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:38:32.292 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:38:32.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:32 smithi049 bash[14150]: cluster 2024-02-22T22:38:31.132905+0000 mgr.smithi049.pzczis (mgr.14180) 779 : cluster [DBG] pgmap v554: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:38:32.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:32 smithi049 bash[14150]: audit 2024-02-22T22:38:31.540340+0000 mgr.smithi049.pzczis (mgr.14180) 780 : audit [DBG] from='client.15060 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:38:33.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:32 smithi195 bash[18068]: cluster 2024-02-22T22:38:31.132905+0000 mgr.smithi049.pzczis (mgr.14180) 779 : cluster [DBG] pgmap v554: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:38:33.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:32 smithi195 bash[18068]: audit 2024-02-22T22:38:31.540340+0000 mgr.smithi049.pzczis (mgr.14180) 780 : audit [DBG] from='client.15060 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:38:33.292 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:38:35.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:34 smithi195 bash[18068]: cluster 2024-02-22T22:38:33.134539+0000 mgr.smithi049.pzczis (mgr.14180) 781 : cluster [DBG] pgmap v555: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:38:35.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:34 smithi049 bash[14150]: cluster 2024-02-22T22:38:33.134539+0000 mgr.smithi049.pzczis (mgr.14180) 781 : cluster [DBG] pgmap v555: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:38:36.040 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:35 smithi049 bash[14150]: cluster 2024-02-22T22:38:35.135579+0000 mgr.smithi049.pzczis (mgr.14180) 782 : cluster [DBG] pgmap v556: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:38:36.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:35 smithi195 bash[18068]: cluster 2024-02-22T22:38:35.135579+0000 mgr.smithi049.pzczis (mgr.14180) 782 : cluster [DBG] pgmap v556: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:38:36.478 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:38:36.478 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:06.796352Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.stvucr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\nDeploy daemon haproxy.nfs.foo.smithi195.stvucr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.110403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.rwfcjb on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\nDeploy daemon haproxy.nfs.foo.smithi049.rwfcjb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.114647Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jnpyhf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:38:36.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:36 smithi049 bash[14150]: audit 2024-02-22T22:38:36.470533+0000 mgr.smithi049.pzczis (mgr.14180) 783 : audit [DBG] from='client.15064 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:38:37.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:36 smithi195 bash[18068]: audit 2024-02-22T22:38:36.470533+0000 mgr.smithi049.pzczis (mgr.14180) 783 : audit [DBG] from='client.15064 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:38:37.285 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:38:38.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:37 smithi195 bash[18068]: cluster 2024-02-22T22:38:37.137608+0000 mgr.smithi049.pzczis (mgr.14180) 784 : cluster [DBG] pgmap v557: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:38:38.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:37 smithi049 bash[14150]: cluster 2024-02-22T22:38:37.137608+0000 mgr.smithi049.pzczis (mgr.14180) 784 : cluster [DBG] pgmap v557: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:38:38.286 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:38:40.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:40 smithi049 bash[14150]: cluster 2024-02-22T22:38:39.138660+0000 mgr.smithi049.pzczis (mgr.14180) 785 : 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-22T22:38:40.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:40 smithi195 bash[18068]: cluster 2024-02-22T22:38:39.138660+0000 mgr.smithi049.pzczis (mgr.14180) 785 : 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-22T22:38:41.355 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:38:41.355 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:06.796352Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.stvucr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\nDeploy daemon haproxy.nfs.foo.smithi195.stvucr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.110403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.rwfcjb on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\nDeploy daemon haproxy.nfs.foo.smithi049.rwfcjb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.114647Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jnpyhf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:38:42.124 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:38:42.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:42 smithi049 bash[14150]: cluster 2024-02-22T22:38:41.140218+0000 mgr.smithi049.pzczis (mgr.14180) 786 : 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-22T22:38:42.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:42 smithi049 bash[14150]: audit 2024-02-22T22:38:41.347686+0000 mgr.smithi049.pzczis (mgr.14180) 787 : audit [DBG] from='client.15068 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:38:42.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:42 smithi195 bash[18068]: cluster 2024-02-22T22:38:41.140218+0000 mgr.smithi049.pzczis (mgr.14180) 786 : 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-22T22:38:42.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:42 smithi195 bash[18068]: audit 2024-02-22T22:38:41.347686+0000 mgr.smithi049.pzczis (mgr.14180) 787 : audit [DBG] from='client.15068 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:38:43.125 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:38:44.544 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:44 smithi049 bash[14150]: cluster 2024-02-22T22:38:43.142046+0000 mgr.smithi049.pzczis (mgr.14180) 788 : cluster [DBG] pgmap v560: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:38:44.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:44 smithi195 bash[18068]: cluster 2024-02-22T22:38:43.142046+0000 mgr.smithi049.pzczis (mgr.14180) 788 : cluster [DBG] pgmap v560: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:38:46.285 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:38:46.285 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:06.796352Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.stvucr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\nDeploy daemon haproxy.nfs.foo.smithi195.stvucr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.110403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.rwfcjb on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\nDeploy daemon haproxy.nfs.foo.smithi049.rwfcjb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.114647Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jnpyhf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:38:46.485 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:46 smithi049 bash[14150]: cluster 2024-02-22T22:38:45.142793+0000 mgr.smithi049.pzczis (mgr.14180) 789 : 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-22T22:38:46.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:46 smithi195 bash[18068]: cluster 2024-02-22T22:38:45.142793+0000 mgr.smithi049.pzczis (mgr.14180) 789 : 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-22T22:38:47.046 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:38:47.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:47 smithi049 bash[14150]: audit 2024-02-22T22:38:46.277905+0000 mgr.smithi049.pzczis (mgr.14180) 790 : audit [DBG] from='client.15072 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:38:47.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:47 smithi195 bash[18068]: audit 2024-02-22T22:38:46.277905+0000 mgr.smithi049.pzczis (mgr.14180) 790 : audit [DBG] from='client.15072 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:38:48.047 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:38:48.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:48 smithi049 bash[14150]: cluster 2024-02-22T22:38:47.144750+0000 mgr.smithi049.pzczis (mgr.14180) 791 : cluster [DBG] pgmap v562: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:38:48.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:48 smithi195 bash[18068]: cluster 2024-02-22T22:38:47.144750+0000 mgr.smithi049.pzczis (mgr.14180) 791 : cluster [DBG] pgmap v562: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:38:50.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:50 smithi195 bash[18068]: cluster 2024-02-22T22:38:49.146439+0000 mgr.smithi049.pzczis (mgr.14180) 792 : 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-22T22:38:50.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:50 smithi049 bash[14150]: cluster 2024-02-22T22:38:49.146439+0000 mgr.smithi049.pzczis (mgr.14180) 792 : 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-22T22:38:51.151 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:38:51.151 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:06.796352Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.stvucr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\nDeploy daemon haproxy.nfs.foo.smithi195.stvucr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.110403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.rwfcjb on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\nDeploy daemon haproxy.nfs.foo.smithi049.rwfcjb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.114647Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jnpyhf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:38:51.902 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:38:52.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:52 smithi195 bash[18068]: audit 2024-02-22T22:38:51.142783+0000 mgr.smithi049.pzczis (mgr.14180) 793 : audit [DBG] from='client.15076 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:38:52.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:52 smithi195 bash[18068]: cluster 2024-02-22T22:38:51.148292+0000 mgr.smithi049.pzczis (mgr.14180) 794 : 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-22T22:38:52.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:52 smithi049 bash[14150]: audit 2024-02-22T22:38:51.142783+0000 mgr.smithi049.pzczis (mgr.14180) 793 : audit [DBG] from='client.15076 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:38:52.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:52 smithi049 bash[14150]: cluster 2024-02-22T22:38:51.148292+0000 mgr.smithi049.pzczis (mgr.14180) 794 : 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-22T22:38:52.903 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:38:54.399 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:54 smithi049 bash[14150]: cluster 2024-02-22T22:38:53.150021+0000 mgr.smithi049.pzczis (mgr.14180) 795 : cluster [DBG] pgmap v565: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:38:54.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:54 smithi195 bash[18068]: cluster 2024-02-22T22:38:53.150021+0000 mgr.smithi049.pzczis (mgr.14180) 795 : cluster [DBG] pgmap v565: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:38:56.190 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:38:56.190 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:06.796352Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.stvucr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\nDeploy daemon haproxy.nfs.foo.smithi195.stvucr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.110403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.rwfcjb on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\nDeploy daemon haproxy.nfs.foo.smithi049.rwfcjb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.114647Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jnpyhf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:38:56.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:56 smithi195 bash[18068]: cluster 2024-02-22T22:38:55.151277+0000 mgr.smithi049.pzczis (mgr.14180) 796 : 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-22T22:38:56.567 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:56 smithi049 bash[14150]: cluster 2024-02-22T22:38:55.151277+0000 mgr.smithi049.pzczis (mgr.14180) 796 : 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-22T22:38:56.947 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:38:57.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:57 smithi195 bash[18068]: audit 2024-02-22T22:38:56.180696+0000 mgr.smithi049.pzczis (mgr.14180) 797 : audit [DBG] from='client.15080 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:38:57.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:57 smithi049 bash[14150]: audit 2024-02-22T22:38:56.180696+0000 mgr.smithi049.pzczis (mgr.14180) 797 : audit [DBG] from='client.15080 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:38:57.949 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:38:58.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:38:58 smithi049 bash[14150]: cluster 2024-02-22T22:38:57.153331+0000 mgr.smithi049.pzczis (mgr.14180) 798 : cluster [DBG] pgmap v567: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:38:58.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:38:58 smithi195 bash[18068]: cluster 2024-02-22T22:38:57.153331+0000 mgr.smithi049.pzczis (mgr.14180) 798 : cluster [DBG] pgmap v567: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:39:00.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:00 smithi049 bash[14150]: cluster 2024-02-22T22:38:59.154858+0000 mgr.smithi049.pzczis (mgr.14180) 799 : 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-22T22:39:00.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:00 smithi195 bash[18068]: cluster 2024-02-22T22:38:59.154858+0000 mgr.smithi049.pzczis (mgr.14180) 799 : 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-22T22:39:01.244 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:39:01.245 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:06.796352Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.stvucr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\nDeploy daemon haproxy.nfs.foo.smithi195.stvucr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.110403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.rwfcjb on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\nDeploy daemon haproxy.nfs.foo.smithi049.rwfcjb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.114647Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jnpyhf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:39:01.974 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:39:02.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:02 smithi195 bash[18068]: cluster 2024-02-22T22:39:01.156694+0000 mgr.smithi049.pzczis (mgr.14180) 800 : 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-22T22:39:02.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:02 smithi195 bash[18068]: audit 2024-02-22T22:39:01.240798+0000 mgr.smithi049.pzczis (mgr.14180) 801 : audit [DBG] from='client.15084 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:39:02.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:02 smithi049 bash[14150]: cluster 2024-02-22T22:39:01.156694+0000 mgr.smithi049.pzczis (mgr.14180) 800 : 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-22T22:39:02.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:02 smithi049 bash[14150]: audit 2024-02-22T22:39:01.240798+0000 mgr.smithi049.pzczis (mgr.14180) 801 : audit [DBG] from='client.15084 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:39:02.985 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:39:04.423 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:04 smithi049 bash[14150]: cluster 2024-02-22T22:39:03.158386+0000 mgr.smithi049.pzczis (mgr.14180) 802 : cluster [DBG] pgmap v570: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:39:04.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:04 smithi195 bash[18068]: cluster 2024-02-22T22:39:03.158386+0000 mgr.smithi049.pzczis (mgr.14180) 802 : cluster [DBG] pgmap v570: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:39:06.215 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:39:06.215 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:06.796352Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.stvucr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\nDeploy daemon haproxy.nfs.foo.smithi195.stvucr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.110403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.rwfcjb on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\nDeploy daemon haproxy.nfs.foo.smithi049.rwfcjb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.114647Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jnpyhf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:39:06.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:06 smithi195 bash[18068]: cluster 2024-02-22T22:39:05.159635+0000 mgr.smithi049.pzczis (mgr.14180) 803 : cluster [DBG] pgmap v571: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:39:06.568 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:06 smithi049 bash[14150]: cluster 2024-02-22T22:39:05.159635+0000 mgr.smithi049.pzczis (mgr.14180) 803 : cluster [DBG] pgmap v571: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:39:07.000 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:39:07.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:07 smithi195 bash[18068]: audit 2024-02-22T22:39:06.209645+0000 mgr.smithi049.pzczis (mgr.14180) 804 : audit [DBG] from='client.15088 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:39:07.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:07 smithi049 bash[14150]: audit 2024-02-22T22:39:06.209645+0000 mgr.smithi049.pzczis (mgr.14180) 804 : audit [DBG] from='client.15088 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:39:08.001 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:39:08.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:08 smithi195 bash[18068]: cluster 2024-02-22T22:39:07.161595+0000 mgr.smithi049.pzczis (mgr.14180) 805 : cluster [DBG] pgmap v572: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:39:08.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:08 smithi049 bash[14150]: cluster 2024-02-22T22:39:07.161595+0000 mgr.smithi049.pzczis (mgr.14180) 805 : cluster [DBG] pgmap v572: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:39:10.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:10 smithi049 bash[14150]: cluster 2024-02-22T22:39:09.163099+0000 mgr.smithi049.pzczis (mgr.14180) 806 : cluster [DBG] pgmap v573: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:39:10.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:10 smithi195 bash[18068]: cluster 2024-02-22T22:39:09.163099+0000 mgr.smithi049.pzczis (mgr.14180) 806 : cluster [DBG] pgmap v573: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:39:11.191 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:39:11.191 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:37:02.642137Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ephvob on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:06.796352Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.stvucr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\nDeploy daemon haproxy.nfs.foo.smithi195.stvucr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.110403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.rwfcjb on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\nDeploy daemon haproxy.nfs.foo.smithi049.rwfcjb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.114647Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jnpyhf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:39:11.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:11 smithi049 bash[14150]: audit 2024-02-22T22:39:11.120642+0000 mon.smithi049 (mon.0) 881 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:39:11.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:11 smithi195 bash[18068]: audit 2024-02-22T22:39:11.120642+0000 mon.smithi049 (mon.0) 881 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:39:11.902 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:39:12.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:12 smithi049 bash[14150]: cluster 2024-02-22T22:39:11.164932+0000 mgr.smithi049.pzczis (mgr.14180) 807 : cluster [DBG] pgmap v574: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:39:12.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:12 smithi049 bash[14150]: audit 2024-02-22T22:39:11.181977+0000 mgr.smithi049.pzczis (mgr.14180) 808 : audit [DBG] from='client.15092 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:39:12.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:12 smithi049 bash[14150]: audit 2024-02-22T22:39:11.401040+0000 mon.smithi049 (mon.0) 882 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:39:12.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:12 smithi049 bash[14150]: audit 2024-02-22T22:39:11.402167+0000 mon.smithi049 (mon.0) 883 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:39:12.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:12 smithi049 bash[14150]: audit 2024-02-22T22:39:11.407933+0000 mon.smithi049 (mon.0) 884 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:39:12.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:12 smithi049 bash[14150]: cluster 2024-02-22T22:39:11.408680+0000 mgr.smithi049.pzczis (mgr.14180) 809 : cluster [DBG] pgmap v575: 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-22T22:39:12.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:12 smithi049 bash[14150]: audit 2024-02-22T22:39:11.412883+0000 mon.smithi049 (mon.0) 885 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:39:12.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:12 smithi049 bash[14150]: audit 2024-02-22T22:39:11.424065+0000 mon.smithi049 (mon.0) 886 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:39:12.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:12 smithi049 bash[14150]: cephadm 2024-02-22T22:39:11.426933+0000 mgr.smithi049.pzczis (mgr.14180) 810 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.bzwgkc on smithi195 2024-02-22T22:39:12.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:12 smithi195 bash[18068]: cluster 2024-02-22T22:39:11.164932+0000 mgr.smithi049.pzczis (mgr.14180) 807 : cluster [DBG] pgmap v574: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:39:12.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:12 smithi195 bash[18068]: audit 2024-02-22T22:39:11.181977+0000 mgr.smithi049.pzczis (mgr.14180) 808 : audit [DBG] from='client.15092 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:39:12.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:12 smithi195 bash[18068]: audit 2024-02-22T22:39:11.401040+0000 mon.smithi049 (mon.0) 882 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:39:12.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:12 smithi195 bash[18068]: audit 2024-02-22T22:39:11.402167+0000 mon.smithi049 (mon.0) 883 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:39:12.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:12 smithi195 bash[18068]: audit 2024-02-22T22:39:11.407933+0000 mon.smithi049 (mon.0) 884 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:39:12.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:12 smithi195 bash[18068]: cluster 2024-02-22T22:39:11.408680+0000 mgr.smithi049.pzczis (mgr.14180) 809 : cluster [DBG] pgmap v575: 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-22T22:39:12.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:12 smithi195 bash[18068]: audit 2024-02-22T22:39:11.412883+0000 mon.smithi049 (mon.0) 885 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:39:12.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:12 smithi195 bash[18068]: audit 2024-02-22T22:39:11.424065+0000 mon.smithi049 (mon.0) 886 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:39:12.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:12 smithi195 bash[18068]: cephadm 2024-02-22T22:39:11.426933+0000 mgr.smithi049.pzczis (mgr.14180) 810 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.bzwgkc on smithi195 2024-02-22T22:39:12.904 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:39:13.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:13 smithi049 bash[14150]: cluster 2024-02-22T22:39:12.405983+0000 mon.smithi049 (mon.0) 887 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:39:13.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:13 smithi049 bash[14150]: cluster 2024-02-22T22:39:12.406034+0000 mon.smithi049 (mon.0) 888 : cluster [INF] Cluster is now healthy 2024-02-22T22:39:13.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:13 smithi195 bash[18068]: cluster 2024-02-22T22:39:12.405983+0000 mon.smithi049 (mon.0) 887 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:39:13.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:13 smithi195 bash[18068]: cluster 2024-02-22T22:39:12.406034+0000 mon.smithi049 (mon.0) 888 : cluster [INF] Cluster is now healthy 2024-02-22T22:39:14.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:14 smithi049 bash[14150]: cluster 2024-02-22T22:39:13.410077+0000 mgr.smithi049.pzczis (mgr.14180) 811 : cluster [DBG] pgmap v576: 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-22T22:39:14.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:14 smithi195 bash[18068]: cluster 2024-02-22T22:39:13.410077+0000 mgr.smithi049.pzczis (mgr.14180) 811 : cluster [DBG] pgmap v576: 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-22T22:39:15.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:15 smithi195 bash[18068]: audit 2024-02-22T22:39:15.375953+0000 mon.smithi049 (mon.0) 889 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.bzwgkc"}]: dispatch 2024-02-22T22:39:15.641 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:15 smithi049 bash[14150]: audit 2024-02-22T22:39:15.375953+0000 mon.smithi049 (mon.0) 889 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.bzwgkc"}]: dispatch 2024-02-22T22:39:16.052 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:39:16.052 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:38:06.796352Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.stvucr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-stvucr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.stvucr\nDeploy daemon haproxy.nfs.foo.smithi195.stvucr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.110403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.rwfcjb on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-rwfcjb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.rwfcjb\nDeploy daemon haproxy.nfs.foo.smithi049.rwfcjb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:38:11.114647Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jnpyhf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:15.377088Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bzwgkc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\nDeploy daemon haproxy.nfs.foo.smithi195.bzwgkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:39:16.567 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: cephadm 2024-02-22T22:39:15.374860+0000 mgr.smithi049.pzczis (mgr.14180) 812 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc 2024-02-22T22:39:16.568 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:39:16.568 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc 2024-02-22T22:39:16.568 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc 2024-02-22T22:39:16.568 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:39:16.568 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc 2024-02-22T22:39:16.568 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.bzwgkc ... 2024-02-22T22:39:16.568 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:39:16.568 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:39:16.568 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:39:16.568 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:39:16.568 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:39:16.568 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:39:16.569 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:39:16.569 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:39:16.569 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:39:16.569 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:39:16.569 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc 2024-02-22T22:39:16.569 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:39:16.569 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc 2024-02-22T22:39:16.569 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc 2024-02-22T22:39:16.569 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:39:16.569 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc 2024-02-22T22:39:16.569 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.bzwgkc ... 2024-02-22T22:39:16.569 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:39:16.569 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:39:16.569 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:39:16.570 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:39:16.570 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:39:16.570 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: cephadm 2024-02-22T22:39:15.375394+0000 mgr.smithi049.pzczis (mgr.14180) 813 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.bzwgkc 2024-02-22T22:39:16.570 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: cephadm 2024-02-22T22:39:15.377310+0000 mgr.smithi049.pzczis (mgr.14180) 814 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.bzwgkc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc 2024-02-22T22:39:16.570 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:39:16.570 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc 2024-02-22T22:39:16.570 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc 2024-02-22T22:39:16.570 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:39:16.570 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc 2024-02-22T22:39:16.570 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.bzwgkc ... 2024-02-22T22:39:16.570 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:39:16.570 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:39:16.570 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:39:16.570 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:39:16.570 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:39:16.571 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: cephadm 2024-02-22T22:39:15.381666+0000 mgr.smithi049.pzczis (mgr.14180) 815 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.ytivua on smithi049 2024-02-22T22:39:16.571 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:16 smithi049 bash[14150]: cluster 2024-02-22T22:39:15.411089+0000 mgr.smithi049.pzczis (mgr.14180) 816 : cluster [DBG] pgmap v577: 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-22T22:39:16.801 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:39:16.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: cephadm 2024-02-22T22:39:15.374860+0000 mgr.smithi049.pzczis (mgr.14180) 812 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc 2024-02-22T22:39:16.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:39:16.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc 2024-02-22T22:39:16.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc 2024-02-22T22:39:16.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:39:16.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc 2024-02-22T22:39:16.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.bzwgkc ... 2024-02-22T22:39:16.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:39:16.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:39:16.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:39:16.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:39:16.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:39:16.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:39:16.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:39:16.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:39:16.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:39:16.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:39:16.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc 2024-02-22T22:39:16.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:39:16.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc 2024-02-22T22:39:16.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc 2024-02-22T22:39:16.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:39:16.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc 2024-02-22T22:39:16.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.bzwgkc ... 2024-02-22T22:39:16.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:39:16.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:39:16.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:39:16.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:39:16.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:39:16.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: cephadm 2024-02-22T22:39:15.375394+0000 mgr.smithi049.pzczis (mgr.14180) 813 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.bzwgkc 2024-02-22T22:39:16.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: cephadm 2024-02-22T22:39:15.377310+0000 mgr.smithi049.pzczis (mgr.14180) 814 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.bzwgkc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc 2024-02-22T22:39:16.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:39:16.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc 2024-02-22T22:39:16.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc 2024-02-22T22:39:16.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:39:16.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc 2024-02-22T22:39:16.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.bzwgkc ... 2024-02-22T22:39:16.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:39:16.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:39:16.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:39:16.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:39:16.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:39:16.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: cephadm 2024-02-22T22:39:15.381666+0000 mgr.smithi049.pzczis (mgr.14180) 815 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.ytivua on smithi049 2024-02-22T22:39:16.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:16 smithi195 bash[18068]: cluster 2024-02-22T22:39:15.411089+0000 mgr.smithi049.pzczis (mgr.14180) 816 : cluster [DBG] pgmap v577: 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-22T22:39:17.802 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:39:17.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:17 smithi195 bash[18068]: audit 2024-02-22T22:39:16.048545+0000 mgr.smithi049.pzczis (mgr.14180) 817 : audit [DBG] from='client.15096 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:39:17.815 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:17 smithi049 bash[14150]: audit 2024-02-22T22:39:16.048545+0000 mgr.smithi049.pzczis (mgr.14180) 817 : audit [DBG] from='client.15096 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:39:18.741 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:18 smithi049 bash[14150]: cluster 2024-02-22T22:39:17.412597+0000 mgr.smithi049.pzczis (mgr.14180) 818 : 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-22T22:39:18.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:18 smithi195 bash[18068]: cluster 2024-02-22T22:39:17.412597+0000 mgr.smithi049.pzczis (mgr.14180) 818 : 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-22T22:39:19.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:19 smithi049 bash[14150]: audit 2024-02-22T22:39:19.214646+0000 mon.smithi049 (mon.0) 890 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.ytivua"}]: dispatch 2024-02-22T22:39:19.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:19 smithi195 bash[18068]: audit 2024-02-22T22:39:19.214646+0000 mon.smithi049 (mon.0) 890 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.ytivua"}]: dispatch 2024-02-22T22:39:20.761 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: cephadm 2024-02-22T22:39:19.213478+0000 mgr.smithi049.pzczis (mgr.14180) 819 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua 2024-02-22T22:39:20.761 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:39:20.761 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua 2024-02-22T22:39:20.761 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua 2024-02-22T22:39:20.761 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:39:20.761 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua 2024-02-22T22:39:20.762 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.ytivua ... 2024-02-22T22:39:20.762 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:39:20.762 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:39:20.762 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:39:20.762 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:39:20.762 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:39:20.762 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:39:20.762 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:39:20.762 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:39:20.762 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:39:20.762 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:39:20.762 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua 2024-02-22T22:39:20.762 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:39:20.762 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua 2024-02-22T22:39:20.762 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua 2024-02-22T22:39:20.763 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:39:20.763 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua 2024-02-22T22:39:20.763 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.ytivua ... 2024-02-22T22:39:20.763 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:39:20.763 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:39:20.763 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:39:20.763 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:39:20.763 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:39:20.763 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: cephadm 2024-02-22T22:39:19.214004+0000 mgr.smithi049.pzczis (mgr.14180) 820 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.ytivua 2024-02-22T22:39:20.763 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: cephadm 2024-02-22T22:39:19.216066+0000 mgr.smithi049.pzczis (mgr.14180) 821 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.ytivua on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua 2024-02-22T22:39:20.763 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:39:20.763 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua 2024-02-22T22:39:20.763 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua 2024-02-22T22:39:20.763 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:39:20.763 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua 2024-02-22T22:39:20.763 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.ytivua ... 2024-02-22T22:39:20.764 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:39:20.764 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:39:20.764 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:39:20.764 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:39:20.764 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:39:20.764 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: cephadm 2024-02-22T22:39:19.218803+0000 mgr.smithi049.pzczis (mgr.14180) 822 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.jargot on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:39:20.764 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: cephadm 2024-02-22T22:39:19.221387+0000 mgr.smithi049.pzczis (mgr.14180) 823 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:39:20.764 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: cluster 2024-02-22T22:39:19.222561+0000 mgr.smithi049.pzczis (mgr.14180) 824 : cluster [DBG] pgmap v579: 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-22T22:39:20.764 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:20 smithi049 bash[14150]: cluster 2024-02-22T22:39:19.482426+0000 mon.smithi049 (mon.0) 891 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:39:20.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: cephadm 2024-02-22T22:39:19.213478+0000 mgr.smithi049.pzczis (mgr.14180) 819 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua 2024-02-22T22:39:20.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:39:20.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua 2024-02-22T22:39:20.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua 2024-02-22T22:39:20.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:39:20.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua 2024-02-22T22:39:20.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.ytivua ... 2024-02-22T22:39:20.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:39:20.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:39:20.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:39:20.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:39:20.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:39:20.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:39:20.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:39:20.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:39:20.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:39:20.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:39:20.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua 2024-02-22T22:39:20.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:39:20.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua 2024-02-22T22:39:20.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua 2024-02-22T22:39:20.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:39:20.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua 2024-02-22T22:39:20.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.ytivua ... 2024-02-22T22:39:20.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:39:20.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:39:20.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:39:20.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:39:20.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:39:20.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: cephadm 2024-02-22T22:39:19.214004+0000 mgr.smithi049.pzczis (mgr.14180) 820 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.ytivua 2024-02-22T22:39:20.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: cephadm 2024-02-22T22:39:19.216066+0000 mgr.smithi049.pzczis (mgr.14180) 821 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.ytivua on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua 2024-02-22T22:39:20.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:39:20.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua 2024-02-22T22:39:20.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua 2024-02-22T22:39:20.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:39:20.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua 2024-02-22T22:39:20.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.ytivua ... 2024-02-22T22:39:20.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:39:20.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:39:20.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:39:20.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:39:20.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:39:20.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: cephadm 2024-02-22T22:39:19.218803+0000 mgr.smithi049.pzczis (mgr.14180) 822 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.jargot on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:39:20.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: cephadm 2024-02-22T22:39:19.221387+0000 mgr.smithi049.pzczis (mgr.14180) 823 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:39:20.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: cluster 2024-02-22T22:39:19.222561+0000 mgr.smithi049.pzczis (mgr.14180) 824 : cluster [DBG] pgmap v579: 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-22T22:39:20.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:20 smithi195 bash[18068]: cluster 2024-02-22T22:39:19.482426+0000 mon.smithi049 (mon.0) 891 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:39:21.143 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:39:21.144 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:15.377088Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bzwgkc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\nDeploy daemon haproxy.nfs.foo.smithi195.bzwgkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.215914Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.ytivua on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\nDeploy daemon haproxy.nfs.foo.smithi049.ytivua ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.218631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jargot on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:39:21.929 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:39:22.930 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:39:22.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:22 smithi049 bash[14150]: audit 2024-02-22T22:39:21.134920+0000 mgr.smithi049.pzczis (mgr.14180) 825 : audit [DBG] from='client.15100 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:39:22.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:22 smithi049 bash[14150]: cluster 2024-02-22T22:39:21.223823+0000 mgr.smithi049.pzczis (mgr.14180) 826 : cluster [DBG] pgmap v580: 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-22T22:39:22.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:22 smithi049 bash[14150]: audit 2024-02-22T22:39:21.603571+0000 mon.smithi049 (mon.0) 892 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:39:23.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:22 smithi195 bash[18068]: audit 2024-02-22T22:39:21.134920+0000 mgr.smithi049.pzczis (mgr.14180) 825 : audit [DBG] from='client.15100 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:39:23.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:22 smithi195 bash[18068]: cluster 2024-02-22T22:39:21.223823+0000 mgr.smithi049.pzczis (mgr.14180) 826 : cluster [DBG] pgmap v580: 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-22T22:39:23.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:22 smithi195 bash[18068]: audit 2024-02-22T22:39:21.603571+0000 mon.smithi049 (mon.0) 892 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:39:24.910 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:24 smithi049 bash[14150]: cluster 2024-02-22T22:39:23.224690+0000 mgr.smithi049.pzczis (mgr.14180) 827 : cluster [DBG] pgmap v581: 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-22T22:39:25.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:24 smithi195 bash[18068]: cluster 2024-02-22T22:39:23.224690+0000 mgr.smithi049.pzczis (mgr.14180) 827 : cluster [DBG] pgmap v581: 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-22T22:39:26.227 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:39:26.227 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:15.377088Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bzwgkc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\nDeploy daemon haproxy.nfs.foo.smithi195.bzwgkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.215914Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.ytivua on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\nDeploy daemon haproxy.nfs.foo.smithi049.ytivua ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.218631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jargot on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:39:26.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:26 smithi049 bash[14150]: cluster 2024-02-22T22:39:25.225900+0000 mgr.smithi049.pzczis (mgr.14180) 828 : cluster [DBG] pgmap v582: 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-22T22:39:26.960 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:39:27.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:26 smithi195 bash[18068]: cluster 2024-02-22T22:39:25.225900+0000 mgr.smithi049.pzczis (mgr.14180) 828 : cluster [DBG] pgmap v582: 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-22T22:39:27.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:27 smithi049 bash[14150]: audit 2024-02-22T22:39:26.218884+0000 mgr.smithi049.pzczis (mgr.14180) 829 : audit [DBG] from='client.15104 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:39:27.961 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:39:28.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:27 smithi195 bash[18068]: audit 2024-02-22T22:39:26.218884+0000 mgr.smithi049.pzczis (mgr.14180) 829 : audit [DBG] from='client.15104 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:39:28.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:28 smithi049 bash[14150]: cluster 2024-02-22T22:39:27.227856+0000 mgr.smithi049.pzczis (mgr.14180) 830 : cluster [DBG] pgmap v583: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 11 KiB/s rd, 0 B/s wr, 18 op/s 2024-02-22T22:39:29.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:28 smithi195 bash[18068]: cluster 2024-02-22T22:39:27.227856+0000 mgr.smithi049.pzczis (mgr.14180) 830 : cluster [DBG] pgmap v583: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 11 KiB/s rd, 0 B/s wr, 18 op/s 2024-02-22T22:39:30.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:30 smithi049 bash[14150]: cluster 2024-02-22T22:39:29.229383+0000 mgr.smithi049.pzczis (mgr.14180) 831 : cluster [DBG] pgmap v584: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 21 KiB/s rd, 0 B/s wr, 35 op/s 2024-02-22T22:39:31.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:30 smithi195 bash[18068]: cluster 2024-02-22T22:39:29.229383+0000 mgr.smithi049.pzczis (mgr.14180) 831 : cluster [DBG] pgmap v584: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 21 KiB/s rd, 0 B/s wr, 35 op/s 2024-02-22T22:39:31.057 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:39:31.057 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:15.377088Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bzwgkc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\nDeploy daemon haproxy.nfs.foo.smithi195.bzwgkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.215914Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.ytivua on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\nDeploy daemon haproxy.nfs.foo.smithi049.ytivua ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.218631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jargot on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:39:31.790 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:39:32.791 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:39:32.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:32 smithi049 bash[14150]: audit 2024-02-22T22:39:31.048444+0000 mgr.smithi049.pzczis (mgr.14180) 832 : audit [DBG] from='client.15108 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:39:32.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:32 smithi049 bash[14150]: cluster 2024-02-22T22:39:31.230595+0000 mgr.smithi049.pzczis (mgr.14180) 833 : cluster [DBG] pgmap v585: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 43 KiB/s rd, 0 B/s wr, 71 op/s 2024-02-22T22:39:33.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:32 smithi195 bash[18068]: audit 2024-02-22T22:39:31.048444+0000 mgr.smithi049.pzczis (mgr.14180) 832 : audit [DBG] from='client.15108 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:39:33.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:32 smithi195 bash[18068]: cluster 2024-02-22T22:39:31.230595+0000 mgr.smithi049.pzczis (mgr.14180) 833 : cluster [DBG] pgmap v585: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 43 KiB/s rd, 0 B/s wr, 71 op/s 2024-02-22T22:39:34.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:34 smithi049 bash[14150]: cluster 2024-02-22T22:39:33.232117+0000 mgr.smithi049.pzczis (mgr.14180) 834 : cluster [DBG] pgmap v586: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 43 KiB/s rd, 0 B/s wr, 71 op/s 2024-02-22T22:39:35.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:34 smithi195 bash[18068]: cluster 2024-02-22T22:39:33.232117+0000 mgr.smithi049.pzczis (mgr.14180) 834 : cluster [DBG] pgmap v586: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 43 KiB/s rd, 0 B/s wr, 71 op/s 2024-02-22T22:39:36.070 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:39:36.070 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:15.377088Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bzwgkc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\nDeploy daemon haproxy.nfs.foo.smithi195.bzwgkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.215914Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.ytivua on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\nDeploy daemon haproxy.nfs.foo.smithi049.ytivua ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.218631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jargot on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:39:36.810 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:39:36.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:36 smithi049 bash[14150]: cluster 2024-02-22T22:39:35.232780+0000 mgr.smithi049.pzczis (mgr.14180) 835 : cluster [DBG] pgmap v587: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 43 KiB/s rd, 0 B/s wr, 71 op/s 2024-02-22T22:39:37.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:36 smithi195 bash[18068]: cluster 2024-02-22T22:39:35.232780+0000 mgr.smithi049.pzczis (mgr.14180) 835 : cluster [DBG] pgmap v587: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 43 KiB/s rd, 0 B/s wr, 71 op/s 2024-02-22T22:39:37.810 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:39:37.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:37 smithi049 bash[14150]: audit 2024-02-22T22:39:36.062837+0000 mgr.smithi049.pzczis (mgr.14180) 836 : audit [DBG] from='client.15112 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:39:38.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:37 smithi195 bash[18068]: audit 2024-02-22T22:39:36.062837+0000 mgr.smithi049.pzczis (mgr.14180) 836 : audit [DBG] from='client.15112 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:39:38.929 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:38 smithi049 bash[14150]: cluster 2024-02-22T22:39:37.234722+0000 mgr.smithi049.pzczis (mgr.14180) 837 : cluster [DBG] pgmap v588: 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-22T22:39:39.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:38 smithi195 bash[18068]: cluster 2024-02-22T22:39:37.234722+0000 mgr.smithi049.pzczis (mgr.14180) 837 : cluster [DBG] pgmap v588: 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-22T22:39:40.829 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:39:40.829 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:15.377088Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bzwgkc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\nDeploy daemon haproxy.nfs.foo.smithi195.bzwgkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.215914Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.ytivua on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\nDeploy daemon haproxy.nfs.foo.smithi049.ytivua ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.218631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jargot on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:39:40.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:40 smithi049 bash[14150]: cluster 2024-02-22T22:39:39.236337+0000 mgr.smithi049.pzczis (mgr.14180) 838 : cluster [DBG] pgmap v589: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 32 KiB/s rd, 0 B/s wr, 53 op/s 2024-02-22T22:39:41.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:40 smithi195 bash[18068]: cluster 2024-02-22T22:39:39.236337+0000 mgr.smithi049.pzczis (mgr.14180) 838 : cluster [DBG] pgmap v589: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 32 KiB/s rd, 0 B/s wr, 53 op/s 2024-02-22T22:39:41.598 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:39:42.599 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:39:42.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:42 smithi049 bash[14150]: audit 2024-02-22T22:39:40.825021+0000 mgr.smithi049.pzczis (mgr.14180) 839 : audit [DBG] from='client.15116 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:39:42.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:42 smithi049 bash[14150]: cluster 2024-02-22T22:39:41.238523+0000 mgr.smithi049.pzczis (mgr.14180) 840 : cluster [DBG] pgmap v590: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 22 KiB/s rd, 0 B/s wr, 37 op/s 2024-02-22T22:39:43.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:42 smithi195 bash[18068]: audit 2024-02-22T22:39:40.825021+0000 mgr.smithi049.pzczis (mgr.14180) 839 : audit [DBG] from='client.15116 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:39:43.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:42 smithi195 bash[18068]: cluster 2024-02-22T22:39:41.238523+0000 mgr.smithi049.pzczis (mgr.14180) 840 : cluster [DBG] pgmap v590: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 22 KiB/s rd, 0 B/s wr, 37 op/s 2024-02-22T22:39:44.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:44 smithi049 bash[14150]: cluster 2024-02-22T22:39:43.240185+0000 mgr.smithi049.pzczis (mgr.14180) 841 : cluster [DBG] pgmap v591: 225 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-22T22:39:45.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:44 smithi195 bash[18068]: cluster 2024-02-22T22:39:43.240185+0000 mgr.smithi049.pzczis (mgr.14180) 841 : cluster [DBG] pgmap v591: 225 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-22T22:39:45.632 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:39:45.632 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:15.377088Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bzwgkc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\nDeploy daemon haproxy.nfs.foo.smithi195.bzwgkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.215914Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.ytivua on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\nDeploy daemon haproxy.nfs.foo.smithi049.ytivua ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.218631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jargot on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:39:46.376 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:39:47.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:46 smithi195 bash[18068]: cluster 2024-02-22T22:39:45.241447+0000 mgr.smithi049.pzczis (mgr.14180) 842 : 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-22T22:39:47.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:46 smithi195 bash[18068]: audit 2024-02-22T22:39:45.623470+0000 mgr.smithi049.pzczis (mgr.14180) 843 : audit [DBG] from='client.15120 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:39:47.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:46 smithi049 bash[14150]: cluster 2024-02-22T22:39:45.241447+0000 mgr.smithi049.pzczis (mgr.14180) 842 : 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-22T22:39:47.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:46 smithi049 bash[14150]: audit 2024-02-22T22:39:45.623470+0000 mgr.smithi049.pzczis (mgr.14180) 843 : audit [DBG] from='client.15120 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:39:47.378 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:39:49.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:48 smithi195 bash[18068]: cluster 2024-02-22T22:39:47.243694+0000 mgr.smithi049.pzczis (mgr.14180) 844 : 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-22T22:39:49.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:48 smithi049 bash[14150]: cluster 2024-02-22T22:39:47.243694+0000 mgr.smithi049.pzczis (mgr.14180) 844 : 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-22T22:39:50.505 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:39:50.505 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:15.377088Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bzwgkc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\nDeploy daemon haproxy.nfs.foo.smithi195.bzwgkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.215914Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.ytivua on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\nDeploy daemon haproxy.nfs.foo.smithi049.ytivua ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.218631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jargot on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:39:50.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:50 smithi049 bash[14150]: cluster 2024-02-22T22:39:49.244994+0000 mgr.smithi049.pzczis (mgr.14180) 845 : cluster [DBG] pgmap v594: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:39:51.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:50 smithi195 bash[18068]: cluster 2024-02-22T22:39:49.244994+0000 mgr.smithi049.pzczis (mgr.14180) 845 : cluster [DBG] pgmap v594: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:39:51.249 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:39:52.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:51 smithi195 bash[18068]: audit 2024-02-22T22:39:50.500827+0000 mgr.smithi049.pzczis (mgr.14180) 846 : audit [DBG] from='client.15124 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:39:52.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:51 smithi049 bash[14150]: audit 2024-02-22T22:39:50.500827+0000 mgr.smithi049.pzczis (mgr.14180) 846 : audit [DBG] from='client.15124 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:39:52.250 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:39:53.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:52 smithi195 bash[18068]: cluster 2024-02-22T22:39:51.247113+0000 mgr.smithi049.pzczis (mgr.14180) 847 : 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-22T22:39:53.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:52 smithi049 bash[14150]: cluster 2024-02-22T22:39:51.247113+0000 mgr.smithi049.pzczis (mgr.14180) 847 : 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-22T22:39:53.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:53 smithi049 bash[14150]: cluster 2024-02-22T22:39:53.248552+0000 mgr.smithi049.pzczis (mgr.14180) 848 : cluster [DBG] pgmap v596: 225 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-22T22:39:54.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:53 smithi195 bash[18068]: cluster 2024-02-22T22:39:53.248552+0000 mgr.smithi049.pzczis (mgr.14180) 848 : cluster [DBG] pgmap v596: 225 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-22T22:39:55.394 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:39:55.394 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:15.377088Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bzwgkc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\nDeploy daemon haproxy.nfs.foo.smithi195.bzwgkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.215914Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.ytivua on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\nDeploy daemon haproxy.nfs.foo.smithi049.ytivua ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.218631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jargot on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:39:56.074 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:39:56.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:56 smithi049 bash[14150]: cluster 2024-02-22T22:39:55.250306+0000 mgr.smithi049.pzczis (mgr.14180) 849 : 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-22T22:39:56.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:56 smithi049 bash[14150]: audit 2024-02-22T22:39:55.384219+0000 mgr.smithi049.pzczis (mgr.14180) 850 : audit [DBG] from='client.15128 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:39:56.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:56 smithi195 bash[18068]: cluster 2024-02-22T22:39:55.250306+0000 mgr.smithi049.pzczis (mgr.14180) 849 : 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-22T22:39:56.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:56 smithi195 bash[18068]: audit 2024-02-22T22:39:55.384219+0000 mgr.smithi049.pzczis (mgr.14180) 850 : audit [DBG] from='client.15128 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:39:57.075 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:39:58.397 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:39:58 smithi049 bash[14150]: cluster 2024-02-22T22:39:57.252204+0000 mgr.smithi049.pzczis (mgr.14180) 851 : 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-22T22:39:58.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:39:58 smithi195 bash[18068]: cluster 2024-02-22T22:39:57.252204+0000 mgr.smithi049.pzczis (mgr.14180) 851 : 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-22T22:40:00.177 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:40:00.177 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:15.377088Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bzwgkc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\nDeploy daemon haproxy.nfs.foo.smithi195.bzwgkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.215914Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.ytivua on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\nDeploy daemon haproxy.nfs.foo.smithi049.ytivua ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.218631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jargot on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:40:00.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:00 smithi049 bash[14150]: cluster 2024-02-22T22:39:59.253485+0000 mgr.smithi049.pzczis (mgr.14180) 852 : cluster [DBG] pgmap v599: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:40:00.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:00 smithi049 bash[14150]: cluster 2024-02-22T22:40:00.000158+0000 mon.smithi049 (mon.0) 893 : cluster [WRN] overall HEALTH_WARN Failed to place 4 daemon(s) 2024-02-22T22:40:00.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:00 smithi195 bash[18068]: cluster 2024-02-22T22:39:59.253485+0000 mgr.smithi049.pzczis (mgr.14180) 852 : cluster [DBG] pgmap v599: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:40:00.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:00 smithi195 bash[18068]: cluster 2024-02-22T22:40:00.000158+0000 mon.smithi049 (mon.0) 893 : cluster [WRN] overall HEALTH_WARN Failed to place 4 daemon(s) 2024-02-22T22:40:00.914 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:40:01.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:01 smithi049 bash[14150]: audit 2024-02-22T22:40:00.168629+0000 mgr.smithi049.pzczis (mgr.14180) 853 : audit [DBG] from='client.15132 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:40:01.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:01 smithi195 bash[18068]: audit 2024-02-22T22:40:00.168629+0000 mgr.smithi049.pzczis (mgr.14180) 853 : audit [DBG] from='client.15132 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:40:01.915 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:40:02.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:02 smithi049 bash[14150]: cluster 2024-02-22T22:40:01.255566+0000 mgr.smithi049.pzczis (mgr.14180) 854 : 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-22T22:40:02.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:02 smithi195 bash[18068]: cluster 2024-02-22T22:40:01.255566+0000 mgr.smithi049.pzczis (mgr.14180) 854 : 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-22T22:40:04.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:04 smithi049 bash[14150]: cluster 2024-02-22T22:40:03.256515+0000 mgr.smithi049.pzczis (mgr.14180) 855 : cluster [DBG] pgmap v601: 225 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-22T22:40:04.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:04 smithi195 bash[18068]: cluster 2024-02-22T22:40:03.256515+0000 mgr.smithi049.pzczis (mgr.14180) 855 : cluster [DBG] pgmap v601: 225 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-22T22:40:05.059 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:40:05.059 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:15.377088Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bzwgkc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\nDeploy daemon haproxy.nfs.foo.smithi195.bzwgkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.215914Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.ytivua on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\nDeploy daemon haproxy.nfs.foo.smithi049.ytivua ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.218631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jargot on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:40:05.782 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:40:06.568 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:06 smithi049 bash[14150]: audit 2024-02-22T22:40:05.054915+0000 mgr.smithi049.pzczis (mgr.14180) 856 : audit [DBG] from='client.15136 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:40:06.568 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:06 smithi049 bash[14150]: cluster 2024-02-22T22:40:05.257327+0000 mgr.smithi049.pzczis (mgr.14180) 857 : 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-22T22:40:06.782 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:40:06.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:06 smithi195 bash[18068]: audit 2024-02-22T22:40:05.054915+0000 mgr.smithi049.pzczis (mgr.14180) 856 : audit [DBG] from='client.15136 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:40:06.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:06 smithi195 bash[18068]: cluster 2024-02-22T22:40:05.257327+0000 mgr.smithi049.pzczis (mgr.14180) 857 : 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-22T22:40:08.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:08 smithi049 bash[14150]: cluster 2024-02-22T22:40:07.258891+0000 mgr.smithi049.pzczis (mgr.14180) 858 : cluster [DBG] pgmap v603: 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-22T22:40:08.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:08 smithi195 bash[18068]: cluster 2024-02-22T22:40:07.258891+0000 mgr.smithi049.pzczis (mgr.14180) 858 : cluster [DBG] pgmap v603: 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-22T22:40:09.906 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:40:09.906 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:15.377088Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bzwgkc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\nDeploy daemon haproxy.nfs.foo.smithi195.bzwgkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.215914Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.ytivua on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\nDeploy daemon haproxy.nfs.foo.smithi049.ytivua ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.218631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jargot on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:40:10.603 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:10 smithi049 bash[14150]: cluster 2024-02-22T22:40:09.260067+0000 mgr.smithi049.pzczis (mgr.14180) 859 : cluster [DBG] pgmap v604: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.1 KiB/s rd, 0 B/s wr, 3 op/s 2024-02-22T22:40:10.604 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:40:10.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:10 smithi195 bash[18068]: cluster 2024-02-22T22:40:09.260067+0000 mgr.smithi049.pzczis (mgr.14180) 859 : cluster [DBG] pgmap v604: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.1 KiB/s rd, 0 B/s wr, 3 op/s 2024-02-22T22:40:11.605 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:40:11.618 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:11 smithi049 bash[14150]: audit 2024-02-22T22:40:09.900298+0000 mgr.smithi049.pzczis (mgr.14180) 860 : audit [DBG] from='client.15140 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:40:11.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:11 smithi195 bash[18068]: audit 2024-02-22T22:40:09.900298+0000 mgr.smithi049.pzczis (mgr.14180) 860 : audit [DBG] from='client.15140 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:40:12.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:12 smithi049 bash[14150]: cluster 2024-02-22T22:40:11.262008+0000 mgr.smithi049.pzczis (mgr.14180) 861 : cluster [DBG] pgmap v605: 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-22T22:40:12.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:12 smithi195 bash[18068]: cluster 2024-02-22T22:40:11.262008+0000 mgr.smithi049.pzczis (mgr.14180) 861 : cluster [DBG] pgmap v605: 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-22T22:40:14.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:14 smithi049 bash[14150]: cluster 2024-02-22T22:40:13.263170+0000 mgr.smithi049.pzczis (mgr.14180) 862 : cluster [DBG] pgmap v606: 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-22T22:40:14.726 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:40:14.726 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:15.377088Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bzwgkc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\nDeploy daemon haproxy.nfs.foo.smithi195.bzwgkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.215914Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.ytivua on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\nDeploy daemon haproxy.nfs.foo.smithi049.ytivua ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.218631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jargot on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:40:14.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:14 smithi195 bash[18068]: cluster 2024-02-22T22:40:13.263170+0000 mgr.smithi049.pzczis (mgr.14180) 862 : cluster [DBG] pgmap v606: 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-22T22:40:15.463 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:40:15.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:15 smithi049 bash[14150]: audit 2024-02-22T22:40:14.716284+0000 mgr.smithi049.pzczis (mgr.14180) 863 : audit [DBG] from='client.15144 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:40:15.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:15 smithi195 bash[18068]: audit 2024-02-22T22:40:14.716284+0000 mgr.smithi049.pzczis (mgr.14180) 863 : audit [DBG] from='client.15144 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:40:16.464 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:40:16.668 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:16 smithi049 bash[14150]: cluster 2024-02-22T22:40:15.264455+0000 mgr.smithi049.pzczis (mgr.14180) 864 : cluster [DBG] pgmap v607: 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-22T22:40:16.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:16 smithi195 bash[18068]: cluster 2024-02-22T22:40:15.264455+0000 mgr.smithi049.pzczis (mgr.14180) 864 : cluster [DBG] pgmap v607: 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-22T22:40:18.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:18 smithi195 bash[18068]: cluster 2024-02-22T22:40:17.265839+0000 mgr.smithi049.pzczis (mgr.14180) 865 : cluster [DBG] pgmap v608: 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-22T22:40:18.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:18 smithi049 bash[14150]: cluster 2024-02-22T22:40:17.265839+0000 mgr.smithi049.pzczis (mgr.14180) 865 : cluster [DBG] pgmap v608: 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-22T22:40:19.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:19 smithi049 bash[14150]: audit 2024-02-22T22:40:19.225762+0000 mon.smithi049 (mon.0) 894 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:40:19.754 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:40:19.754 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:38:11.116804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mehcah on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:15.377088Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bzwgkc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\nDeploy daemon haproxy.nfs.foo.smithi195.bzwgkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.215914Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.ytivua on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\nDeploy daemon haproxy.nfs.foo.smithi049.ytivua ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.218631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jargot on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:40:19.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:19 smithi195 bash[18068]: audit 2024-02-22T22:40:19.225762+0000 mon.smithi049 (mon.0) 894 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:40:20.454 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:40:20.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:20 smithi049 bash[14150]: cluster 2024-02-22T22:40:19.266556+0000 mgr.smithi049.pzczis (mgr.14180) 866 : cluster [DBG] pgmap v609: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.3 KiB/s rd, 0 B/s wr, 3 op/s 2024-02-22T22:40:20.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:20 smithi049 bash[14150]: audit 2024-02-22T22:40:19.527942+0000 mon.smithi049 (mon.0) 895 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:40:20.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:20 smithi049 bash[14150]: audit 2024-02-22T22:40:19.529544+0000 mon.smithi049 (mon.0) 896 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:40:20.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:20 smithi049 bash[14150]: audit 2024-02-22T22:40:19.544296+0000 mon.smithi049 (mon.0) 897 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:40:20.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:20 smithi049 bash[14150]: cluster 2024-02-22T22:40:19.545227+0000 mgr.smithi049.pzczis (mgr.14180) 867 : cluster [DBG] pgmap v610: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.4 KiB/s rd, 0 B/s wr, 3 op/s 2024-02-22T22:40:20.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:20 smithi049 bash[14150]: audit 2024-02-22T22:40:19.551776+0000 mon.smithi049 (mon.0) 898 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:40:20.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:20 smithi049 bash[14150]: audit 2024-02-22T22:40:19.566902+0000 mon.smithi049 (mon.0) 899 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:40:20.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:20 smithi049 bash[14150]: cephadm 2024-02-22T22:40:19.589498+0000 mgr.smithi049.pzczis (mgr.14180) 868 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.eviwdm on smithi195 2024-02-22T22:40:20.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:20 smithi195 bash[18068]: cluster 2024-02-22T22:40:19.266556+0000 mgr.smithi049.pzczis (mgr.14180) 866 : cluster [DBG] pgmap v609: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.3 KiB/s rd, 0 B/s wr, 3 op/s 2024-02-22T22:40:20.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:20 smithi195 bash[18068]: audit 2024-02-22T22:40:19.527942+0000 mon.smithi049 (mon.0) 895 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:40:20.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:20 smithi195 bash[18068]: audit 2024-02-22T22:40:19.529544+0000 mon.smithi049 (mon.0) 896 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:40:20.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:20 smithi195 bash[18068]: audit 2024-02-22T22:40:19.544296+0000 mon.smithi049 (mon.0) 897 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:40:20.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:20 smithi195 bash[18068]: cluster 2024-02-22T22:40:19.545227+0000 mgr.smithi049.pzczis (mgr.14180) 867 : cluster [DBG] pgmap v610: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.4 KiB/s rd, 0 B/s wr, 3 op/s 2024-02-22T22:40:20.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:20 smithi195 bash[18068]: audit 2024-02-22T22:40:19.551776+0000 mon.smithi049 (mon.0) 898 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:40:20.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:20 smithi195 bash[18068]: audit 2024-02-22T22:40:19.566902+0000 mon.smithi049 (mon.0) 899 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:40:20.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:20 smithi195 bash[18068]: cephadm 2024-02-22T22:40:19.589498+0000 mgr.smithi049.pzczis (mgr.14180) 868 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.eviwdm on smithi195 2024-02-22T22:40:21.454 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:40:21.655 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:21 smithi049 bash[14150]: audit 2024-02-22T22:40:19.743568+0000 mgr.smithi049.pzczis (mgr.14180) 869 : audit [DBG] from='client.15148 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:40:21.655 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:21 smithi049 bash[14150]: cluster 2024-02-22T22:40:20.541011+0000 mon.smithi049 (mon.0) 900 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:40:21.655 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:21 smithi049 bash[14150]: cluster 2024-02-22T22:40:20.541076+0000 mon.smithi049 (mon.0) 901 : cluster [INF] Cluster is now healthy 2024-02-22T22:40:21.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:21 smithi195 bash[18068]: audit 2024-02-22T22:40:19.743568+0000 mgr.smithi049.pzczis (mgr.14180) 869 : audit [DBG] from='client.15148 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:40:21.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:21 smithi195 bash[18068]: cluster 2024-02-22T22:40:20.541011+0000 mon.smithi049 (mon.0) 900 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:40:21.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:21 smithi195 bash[18068]: cluster 2024-02-22T22:40:20.541076+0000 mon.smithi049 (mon.0) 901 : cluster [INF] Cluster is now healthy 2024-02-22T22:40:22.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:22 smithi049 bash[14150]: cluster 2024-02-22T22:40:21.546322+0000 mgr.smithi049.pzczis (mgr.14180) 870 : cluster [DBG] pgmap v611: 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-22T22:40:22.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:22 smithi195 bash[18068]: cluster 2024-02-22T22:40:21.546322+0000 mgr.smithi049.pzczis (mgr.14180) 870 : cluster [DBG] pgmap v611: 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-22T22:40:23.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:23 smithi049 bash[14150]: audit 2024-02-22T22:40:22.663366+0000 mon.smithi049 (mon.0) 902 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:40:23.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:23 smithi049 bash[14150]: audit 2024-02-22T22:40:23.448888+0000 mon.smithi049 (mon.0) 903 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.eviwdm"}]: dispatch 2024-02-22T22:40:24.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:23 smithi195 bash[18068]: audit 2024-02-22T22:40:22.663366+0000 mon.smithi049 (mon.0) 902 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:40:24.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:23 smithi195 bash[18068]: audit 2024-02-22T22:40:23.448888+0000 mon.smithi049 (mon.0) 903 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.eviwdm"}]: dispatch 2024-02-22T22:40:24.428 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:40:24.428 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:39:15.377088Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bzwgkc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-bzwgkc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.bzwgkc\nDeploy daemon haproxy.nfs.foo.smithi195.bzwgkc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.215914Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.ytivua on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-ytivua\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.ytivua\nDeploy daemon haproxy.nfs.foo.smithi049.ytivua ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:39:19.218631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jargot on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:23.450275Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.eviwdm on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\nDeploy daemon haproxy.nfs.foo.smithi195.eviwdm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:40:24.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: cephadm 2024-02-22T22:40:23.447637+0000 mgr.smithi049.pzczis (mgr.14180) 871 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm 2024-02-22T22:40:24.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:40:24.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm 2024-02-22T22:40:24.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm 2024-02-22T22:40:24.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:40:24.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm 2024-02-22T22:40:24.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.eviwdm ... 2024-02-22T22:40:24.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:40:24.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:40:24.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:40:24.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:40:24.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:40:24.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:40:24.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:40:24.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:40:24.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:40:24.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:40:24.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm 2024-02-22T22:40:24.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:40:24.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm 2024-02-22T22:40:24.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm 2024-02-22T22:40:24.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:40:24.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm 2024-02-22T22:40:24.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.eviwdm ... 2024-02-22T22:40:24.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:40:24.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:40:24.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:40:24.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:40:24.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:40:24.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: cephadm 2024-02-22T22:40:23.448300+0000 mgr.smithi049.pzczis (mgr.14180) 872 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.eviwdm 2024-02-22T22:40:24.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: cephadm 2024-02-22T22:40:23.450505+0000 mgr.smithi049.pzczis (mgr.14180) 873 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.eviwdm on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm 2024-02-22T22:40:24.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:40:24.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm 2024-02-22T22:40:24.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm 2024-02-22T22:40:24.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:40:24.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm 2024-02-22T22:40:24.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.eviwdm ... 2024-02-22T22:40:24.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:40:24.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:40:24.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:40:24.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:40:24.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:40:24.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: cephadm 2024-02-22T22:40:23.455303+0000 mgr.smithi049.pzczis (mgr.14180) 874 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.bwoadr on smithi049 2024-02-22T22:40:24.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:24 smithi049 bash[14150]: cluster 2024-02-22T22:40:23.547108+0000 mgr.smithi049.pzczis (mgr.14180) 875 : cluster [DBG] pgmap v612: 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-22T22:40:25.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: cephadm 2024-02-22T22:40:23.447637+0000 mgr.smithi049.pzczis (mgr.14180) 871 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm 2024-02-22T22:40:25.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:40:25.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm 2024-02-22T22:40:25.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm 2024-02-22T22:40:25.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:40:25.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm 2024-02-22T22:40:25.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.eviwdm ... 2024-02-22T22:40:25.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:40:25.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:40:25.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:40:25.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:40:25.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:40:25.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:40:25.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:40:25.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:40:25.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:40:25.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:40:25.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm 2024-02-22T22:40:25.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:40:25.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm 2024-02-22T22:40:25.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm 2024-02-22T22:40:25.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:40:25.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm 2024-02-22T22:40:25.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.eviwdm ... 2024-02-22T22:40:25.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:40:25.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:40:25.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:40:25.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:40:25.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:40:25.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: cephadm 2024-02-22T22:40:23.448300+0000 mgr.smithi049.pzczis (mgr.14180) 872 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.eviwdm 2024-02-22T22:40:25.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: cephadm 2024-02-22T22:40:23.450505+0000 mgr.smithi049.pzczis (mgr.14180) 873 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.eviwdm on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm 2024-02-22T22:40:25.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:40:25.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm 2024-02-22T22:40:25.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm 2024-02-22T22:40:25.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:40:25.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm 2024-02-22T22:40:25.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.eviwdm ... 2024-02-22T22:40:25.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:40:25.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:40:25.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:40:25.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:40:25.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:40:25.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: cephadm 2024-02-22T22:40:23.455303+0000 mgr.smithi049.pzczis (mgr.14180) 874 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.bwoadr on smithi049 2024-02-22T22:40:25.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:24 smithi195 bash[18068]: cluster 2024-02-22T22:40:23.547108+0000 mgr.smithi049.pzczis (mgr.14180) 875 : cluster [DBG] pgmap v612: 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-22T22:40:25.209 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:40:25.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:25 smithi049 bash[14150]: audit 2024-02-22T22:40:24.418431+0000 mgr.smithi049.pzczis (mgr.14180) 876 : audit [DBG] from='client.15152 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:40:26.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:25 smithi195 bash[18068]: audit 2024-02-22T22:40:24.418431+0000 mgr.smithi049.pzczis (mgr.14180) 876 : audit [DBG] from='client.15152 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:40:26.210 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:40:26.837 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:26 smithi049 bash[14150]: cluster 2024-02-22T22:40:25.548412+0000 mgr.smithi049.pzczis (mgr.14180) 877 : cluster [DBG] pgmap v613: 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-22T22:40:27.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:26 smithi195 bash[18068]: cluster 2024-02-22T22:40:25.548412+0000 mgr.smithi049.pzczis (mgr.14180) 877 : cluster [DBG] pgmap v613: 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-22T22:40:27.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:27 smithi049 bash[14150]: audit 2024-02-22T22:40:27.484577+0000 mon.smithi049 (mon.0) 904 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.bwoadr"}]: dispatch 2024-02-22T22:40:28.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:27 smithi195 bash[18068]: audit 2024-02-22T22:40:27.484577+0000 mon.smithi049 (mon.0) 904 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.bwoadr"}]: dispatch 2024-02-22T22:40:29.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: cephadm 2024-02-22T22:40:27.483534+0000 mgr.smithi049.pzczis (mgr.14180) 878 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr 2024-02-22T22:40:29.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:40:29.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr 2024-02-22T22:40:29.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr 2024-02-22T22:40:29.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:40:29.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr 2024-02-22T22:40:29.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.bwoadr ... 2024-02-22T22:40:29.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:40:29.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:40:29.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:40:29.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:40:29.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:40:29.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:40:29.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:40:29.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:40:29.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:40:29.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:40:29.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr 2024-02-22T22:40:29.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:40:29.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr 2024-02-22T22:40:29.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr 2024-02-22T22:40:29.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:40:29.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr 2024-02-22T22:40:29.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.bwoadr ... 2024-02-22T22:40:29.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:40:29.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:40:29.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:40:29.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:40:29.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:40:29.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: cephadm 2024-02-22T22:40:27.483987+0000 mgr.smithi049.pzczis (mgr.14180) 879 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.bwoadr 2024-02-22T22:40:29.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: cephadm 2024-02-22T22:40:27.485884+0000 mgr.smithi049.pzczis (mgr.14180) 880 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.bwoadr on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr 2024-02-22T22:40:29.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:40:29.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr 2024-02-22T22:40:29.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr 2024-02-22T22:40:29.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:40:29.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr 2024-02-22T22:40:29.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.bwoadr ... 2024-02-22T22:40:29.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:40:29.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:40:29.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:40:29.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:40:29.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:40:29.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: cephadm 2024-02-22T22:40:27.488024+0000 mgr.smithi049.pzczis (mgr.14180) 881 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.wmbkac on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:40:29.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: cephadm 2024-02-22T22:40:27.489623+0000 mgr.smithi049.pzczis (mgr.14180) 882 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:40:29.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: cluster 2024-02-22T22:40:27.490994+0000 mgr.smithi049.pzczis (mgr.14180) 883 : cluster [DBG] pgmap v614: 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-22T22:40:29.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:28 smithi195 bash[18068]: cluster 2024-02-22T22:40:27.680198+0000 mon.smithi049 (mon.0) 905 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:40:29.179 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: cephadm 2024-02-22T22:40:27.483534+0000 mgr.smithi049.pzczis (mgr.14180) 878 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr 2024-02-22T22:40:29.179 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:40:29.180 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr 2024-02-22T22:40:29.180 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr 2024-02-22T22:40:29.180 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:40:29.180 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr 2024-02-22T22:40:29.180 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.bwoadr ... 2024-02-22T22:40:29.180 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:40:29.180 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:40:29.180 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:40:29.180 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:40:29.180 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:40:29.180 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:40:29.180 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:40:29.181 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:40:29.181 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:40:29.181 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:40:29.181 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr 2024-02-22T22:40:29.181 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:40:29.181 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr 2024-02-22T22:40:29.181 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr 2024-02-22T22:40:29.181 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:40:29.181 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr 2024-02-22T22:40:29.181 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.bwoadr ... 2024-02-22T22:40:29.181 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:40:29.181 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:40:29.181 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:40:29.181 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:40:29.181 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:40:29.181 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: cephadm 2024-02-22T22:40:27.483987+0000 mgr.smithi049.pzczis (mgr.14180) 879 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.bwoadr 2024-02-22T22:40:29.181 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: cephadm 2024-02-22T22:40:27.485884+0000 mgr.smithi049.pzczis (mgr.14180) 880 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.bwoadr on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr 2024-02-22T22:40:29.182 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:40:29.182 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr 2024-02-22T22:40:29.182 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr 2024-02-22T22:40:29.182 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:40:29.182 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr 2024-02-22T22:40:29.182 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.bwoadr ... 2024-02-22T22:40:29.182 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:40:29.182 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:40:29.182 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:40:29.182 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:40:29.182 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:40:29.182 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: cephadm 2024-02-22T22:40:27.488024+0000 mgr.smithi049.pzczis (mgr.14180) 881 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.wmbkac on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:40:29.182 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: cephadm 2024-02-22T22:40:27.489623+0000 mgr.smithi049.pzczis (mgr.14180) 882 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:40:29.182 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: cluster 2024-02-22T22:40:27.490994+0000 mgr.smithi049.pzczis (mgr.14180) 883 : cluster [DBG] pgmap v614: 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-22T22:40:29.183 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:28 smithi049 bash[14150]: cluster 2024-02-22T22:40:27.680198+0000 mon.smithi049 (mon.0) 905 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:40:29.603 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:40:29.603 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:23.450275Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.eviwdm on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\nDeploy daemon haproxy.nfs.foo.smithi195.eviwdm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.485690Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.bwoadr on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\nDeploy daemon haproxy.nfs.foo.smithi049.bwoadr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.487930Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.wmbkac on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:40:30.447 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:40:31.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:30 smithi195 bash[18068]: cluster 2024-02-22T22:40:29.492146+0000 mgr.smithi049.pzczis (mgr.14180) 884 : cluster [DBG] pgmap v615: 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-22T22:40:31.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:30 smithi195 bash[18068]: audit 2024-02-22T22:40:29.595018+0000 mgr.smithi049.pzczis (mgr.14180) 885 : audit [DBG] from='client.15156 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:40:31.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:30 smithi049 bash[14150]: cluster 2024-02-22T22:40:29.492146+0000 mgr.smithi049.pzczis (mgr.14180) 884 : cluster [DBG] pgmap v615: 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-22T22:40:31.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:30 smithi049 bash[14150]: audit 2024-02-22T22:40:29.595018+0000 mgr.smithi049.pzczis (mgr.14180) 885 : audit [DBG] from='client.15156 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:40:31.447 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:40:32.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:32 smithi049 bash[14150]: cluster 2024-02-22T22:40:31.494313+0000 mgr.smithi049.pzczis (mgr.14180) 886 : cluster [DBG] pgmap v616: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:40:32.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:32 smithi049 bash[14150]: audit 2024-02-22T22:40:31.660222+0000 mon.smithi049 (mon.0) 906 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:40:33.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:32 smithi195 bash[18068]: cluster 2024-02-22T22:40:31.494313+0000 mgr.smithi049.pzczis (mgr.14180) 886 : cluster [DBG] pgmap v616: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:40:33.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:32 smithi195 bash[18068]: audit 2024-02-22T22:40:31.660222+0000 mon.smithi049 (mon.0) 906 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:40:34.533 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:40:34.533 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:23.450275Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.eviwdm on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\nDeploy daemon haproxy.nfs.foo.smithi195.eviwdm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.485690Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.bwoadr on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\nDeploy daemon haproxy.nfs.foo.smithi049.bwoadr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.487930Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.wmbkac on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:40:34.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:34 smithi049 bash[14150]: cluster 2024-02-22T22:40:33.495978+0000 mgr.smithi049.pzczis (mgr.14180) 887 : cluster [DBG] pgmap v617: 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-22T22:40:35.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:34 smithi195 bash[18068]: cluster 2024-02-22T22:40:33.495978+0000 mgr.smithi049.pzczis (mgr.14180) 887 : cluster [DBG] pgmap v617: 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-22T22:40:35.317 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:40:35.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:35 smithi049 bash[14150]: audit 2024-02-22T22:40:34.529481+0000 mgr.smithi049.pzczis (mgr.14180) 888 : audit [DBG] from='client.15160 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:40:36.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:35 smithi195 bash[18068]: audit 2024-02-22T22:40:34.529481+0000 mgr.smithi049.pzczis (mgr.14180) 888 : audit [DBG] from='client.15160 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:40:36.318 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:40:36.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:36 smithi049 bash[14150]: cluster 2024-02-22T22:40:35.497724+0000 mgr.smithi049.pzczis (mgr.14180) 889 : cluster [DBG] pgmap v618: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:40:37.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:36 smithi195 bash[18068]: cluster 2024-02-22T22:40:35.497724+0000 mgr.smithi049.pzczis (mgr.14180) 889 : cluster [DBG] pgmap v618: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:40:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:38 smithi049 bash[14150]: cluster 2024-02-22T22:40:37.499096+0000 mgr.smithi049.pzczis (mgr.14180) 890 : cluster [DBG] pgmap v619: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:40:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:38 smithi049 bash[14150]: audit 2024-02-22T22:40:37.663644+0000 mon.smithi049 (mon.0) 907 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:40:39.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:38 smithi195 bash[18068]: cluster 2024-02-22T22:40:37.499096+0000 mgr.smithi049.pzczis (mgr.14180) 890 : cluster [DBG] pgmap v619: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:40:39.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:38 smithi195 bash[18068]: audit 2024-02-22T22:40:37.663644+0000 mon.smithi049 (mon.0) 907 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:40:39.632 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:40:39.632 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:23.450275Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.eviwdm on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\nDeploy daemon haproxy.nfs.foo.smithi195.eviwdm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.485690Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.bwoadr on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\nDeploy daemon haproxy.nfs.foo.smithi049.bwoadr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.487930Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.wmbkac on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:40:40.353 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:40:40.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:40 smithi049 bash[14150]: cluster 2024-02-22T22:40:39.500137+0000 mgr.smithi049.pzczis (mgr.14180) 891 : cluster [DBG] pgmap v620: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:40:40.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:40 smithi049 bash[14150]: audit 2024-02-22T22:40:39.628713+0000 mgr.smithi049.pzczis (mgr.14180) 892 : audit [DBG] from='client.15164 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:40:41.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:40 smithi195 bash[18068]: cluster 2024-02-22T22:40:39.500137+0000 mgr.smithi049.pzczis (mgr.14180) 891 : cluster [DBG] pgmap v620: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:40:41.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:40 smithi195 bash[18068]: audit 2024-02-22T22:40:39.628713+0000 mgr.smithi049.pzczis (mgr.14180) 892 : audit [DBG] from='client.15164 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:40:41.355 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:40:42.690 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:42 smithi049 bash[14150]: cluster 2024-02-22T22:40:41.501930+0000 mgr.smithi049.pzczis (mgr.14180) 893 : cluster [DBG] pgmap v621: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:40:43.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:42 smithi195 bash[18068]: cluster 2024-02-22T22:40:41.501930+0000 mgr.smithi049.pzczis (mgr.14180) 893 : cluster [DBG] pgmap v621: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:40:44.380 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:40:44.380 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:23.450275Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.eviwdm on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\nDeploy daemon haproxy.nfs.foo.smithi195.eviwdm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.485690Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.bwoadr on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\nDeploy daemon haproxy.nfs.foo.smithi049.bwoadr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.487930Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.wmbkac on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:40:44.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:44 smithi049 bash[14150]: cluster 2024-02-22T22:40:43.503711+0000 mgr.smithi049.pzczis (mgr.14180) 894 : cluster [DBG] pgmap v622: 225 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-22T22:40:45.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:44 smithi195 bash[18068]: cluster 2024-02-22T22:40:43.503711+0000 mgr.smithi049.pzczis (mgr.14180) 894 : cluster [DBG] pgmap v622: 225 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-22T22:40:45.134 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:40:45.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:45 smithi049 bash[14150]: audit 2024-02-22T22:40:44.376649+0000 mgr.smithi049.pzczis (mgr.14180) 895 : audit [DBG] from='client.15168 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:40:46.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:45 smithi195 bash[18068]: audit 2024-02-22T22:40:44.376649+0000 mgr.smithi049.pzczis (mgr.14180) 895 : audit [DBG] from='client.15168 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:40:46.134 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:40:46.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:46 smithi049 bash[14150]: cluster 2024-02-22T22:40:45.505341+0000 mgr.smithi049.pzczis (mgr.14180) 896 : cluster [DBG] pgmap v623: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:40:47.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:46 smithi195 bash[18068]: cluster 2024-02-22T22:40:45.505341+0000 mgr.smithi049.pzczis (mgr.14180) 896 : cluster [DBG] pgmap v623: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:40:48.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:48 smithi049 bash[14150]: cluster 2024-02-22T22:40:47.507115+0000 mgr.smithi049.pzczis (mgr.14180) 897 : cluster [DBG] pgmap v624: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:40:49.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:48 smithi195 bash[18068]: cluster 2024-02-22T22:40:47.507115+0000 mgr.smithi049.pzczis (mgr.14180) 897 : cluster [DBG] pgmap v624: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:40:49.708 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:40:49.709 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:23.450275Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.eviwdm on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\nDeploy daemon haproxy.nfs.foo.smithi195.eviwdm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.485690Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.bwoadr on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\nDeploy daemon haproxy.nfs.foo.smithi049.bwoadr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.487930Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.wmbkac on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:40:50.486 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:40:50.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:50 smithi049 bash[14150]: cluster 2024-02-22T22:40:49.508026+0000 mgr.smithi049.pzczis (mgr.14180) 898 : cluster [DBG] pgmap v625: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:40:50.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:50 smithi049 bash[14150]: audit 2024-02-22T22:40:49.704725+0000 mgr.smithi049.pzczis (mgr.14180) 899 : audit [DBG] from='client.15172 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:40:51.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:50 smithi195 bash[18068]: cluster 2024-02-22T22:40:49.508026+0000 mgr.smithi049.pzczis (mgr.14180) 898 : cluster [DBG] pgmap v625: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:40:51.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:50 smithi195 bash[18068]: audit 2024-02-22T22:40:49.704725+0000 mgr.smithi049.pzczis (mgr.14180) 899 : audit [DBG] from='client.15172 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:40:51.487 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:40:52.848 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:52 smithi049 bash[14150]: cluster 2024-02-22T22:40:51.510567+0000 mgr.smithi049.pzczis (mgr.14180) 900 : cluster [DBG] pgmap v626: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:40:53.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:52 smithi195 bash[18068]: cluster 2024-02-22T22:40:51.510567+0000 mgr.smithi049.pzczis (mgr.14180) 900 : cluster [DBG] pgmap v626: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:40:54.572 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:40:54.572 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:23.450275Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.eviwdm on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\nDeploy daemon haproxy.nfs.foo.smithi195.eviwdm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.485690Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.bwoadr on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\nDeploy daemon haproxy.nfs.foo.smithi049.bwoadr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.487930Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.wmbkac on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:40:54.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:54 smithi049 bash[14150]: cluster 2024-02-22T22:40:53.511867+0000 mgr.smithi049.pzczis (mgr.14180) 901 : cluster [DBG] pgmap v627: 225 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-22T22:40:55.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:54 smithi195 bash[18068]: cluster 2024-02-22T22:40:53.511867+0000 mgr.smithi049.pzczis (mgr.14180) 901 : cluster [DBG] pgmap v627: 225 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-22T22:40:55.303 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:40:56.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:55 smithi195 bash[18068]: audit 2024-02-22T22:40:54.559315+0000 mgr.smithi049.pzczis (mgr.14180) 902 : audit [DBG] from='client.15176 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:40:56.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:55 smithi049 bash[14150]: audit 2024-02-22T22:40:54.559315+0000 mgr.smithi049.pzczis (mgr.14180) 902 : audit [DBG] from='client.15176 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:40:56.304 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:40:56.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:56 smithi049 bash[14150]: cluster 2024-02-22T22:40:55.513418+0000 mgr.smithi049.pzczis (mgr.14180) 903 : 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-22T22:40:57.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:56 smithi195 bash[18068]: cluster 2024-02-22T22:40:55.513418+0000 mgr.smithi049.pzczis (mgr.14180) 903 : 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-22T22:40:57.847 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:40:57 smithi049 bash[14150]: cluster 2024-02-22T22:40:57.515220+0000 mgr.smithi049.pzczis (mgr.14180) 904 : 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-22T22:40:58.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:40:57 smithi195 bash[18068]: cluster 2024-02-22T22:40:57.515220+0000 mgr.smithi049.pzczis (mgr.14180) 904 : 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-22T22:40:59.653 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:40:59.653 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:23.450275Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.eviwdm on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\nDeploy daemon haproxy.nfs.foo.smithi195.eviwdm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.485690Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.bwoadr on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\nDeploy daemon haproxy.nfs.foo.smithi049.bwoadr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.487930Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.wmbkac on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:41:00.459 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:41:00.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:00 smithi049 bash[14150]: cluster 2024-02-22T22:40:59.516040+0000 mgr.smithi049.pzczis (mgr.14180) 905 : cluster [DBG] pgmap v630: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:41:00.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:00 smithi049 bash[14150]: audit 2024-02-22T22:40:59.649458+0000 mgr.smithi049.pzczis (mgr.14180) 906 : audit [DBG] from='client.15180 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:41:01.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:00 smithi195 bash[18068]: cluster 2024-02-22T22:40:59.516040+0000 mgr.smithi049.pzczis (mgr.14180) 905 : cluster [DBG] pgmap v630: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:41:01.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:00 smithi195 bash[18068]: audit 2024-02-22T22:40:59.649458+0000 mgr.smithi049.pzczis (mgr.14180) 906 : audit [DBG] from='client.15180 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:41:01.460 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:41:02.871 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:02 smithi049 bash[14150]: cluster 2024-02-22T22:41:01.517947+0000 mgr.smithi049.pzczis (mgr.14180) 907 : 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-22T22:41:03.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:02 smithi195 bash[18068]: cluster 2024-02-22T22:41:01.517947+0000 mgr.smithi049.pzczis (mgr.14180) 907 : 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-22T22:41:04.654 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:41:04.654 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:23.450275Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.eviwdm on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\nDeploy daemon haproxy.nfs.foo.smithi195.eviwdm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.485690Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.bwoadr on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\nDeploy daemon haproxy.nfs.foo.smithi049.bwoadr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.487930Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.wmbkac on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:41:04.854 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:04 smithi049 bash[14150]: cluster 2024-02-22T22:41:03.519619+0000 mgr.smithi049.pzczis (mgr.14180) 908 : cluster [DBG] pgmap v632: 225 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-22T22:41:05.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:04 smithi195 bash[18068]: cluster 2024-02-22T22:41:03.519619+0000 mgr.smithi049.pzczis (mgr.14180) 908 : cluster [DBG] pgmap v632: 225 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-22T22:41:05.454 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:41:05.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:05 smithi049 bash[14150]: audit 2024-02-22T22:41:04.644643+0000 mgr.smithi049.pzczis (mgr.14180) 909 : audit [DBG] from='client.15184 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:41:06.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:05 smithi195 bash[18068]: audit 2024-02-22T22:41:04.644643+0000 mgr.smithi049.pzczis (mgr.14180) 909 : audit [DBG] from='client.15184 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:41:06.455 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:41:06.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:06 smithi049 bash[14150]: cluster 2024-02-22T22:41:05.521271+0000 mgr.smithi049.pzczis (mgr.14180) 910 : 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-22T22:41:07.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:06 smithi195 bash[18068]: cluster 2024-02-22T22:41:05.521271+0000 mgr.smithi049.pzczis (mgr.14180) 910 : 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-22T22:41:08.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:08 smithi049 bash[14150]: cluster 2024-02-22T22:41:07.523132+0000 mgr.smithi049.pzczis (mgr.14180) 911 : 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-22T22:41:09.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:08 smithi195 bash[18068]: cluster 2024-02-22T22:41:07.523132+0000 mgr.smithi049.pzczis (mgr.14180) 911 : 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-22T22:41:09.714 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:41:09.714 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:23.450275Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.eviwdm on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\nDeploy daemon haproxy.nfs.foo.smithi195.eviwdm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.485690Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.bwoadr on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\nDeploy daemon haproxy.nfs.foo.smithi049.bwoadr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.487930Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.wmbkac on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:41:10.361 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:41:10.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:10 smithi049 bash[14150]: cluster 2024-02-22T22:41:09.524066+0000 mgr.smithi049.pzczis (mgr.14180) 912 : cluster [DBG] pgmap v635: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:41:10.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:10 smithi049 bash[14150]: audit 2024-02-22T22:41:09.702973+0000 mgr.smithi049.pzczis (mgr.14180) 913 : audit [DBG] from='client.15188 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:41:11.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:10 smithi195 bash[18068]: cluster 2024-02-22T22:41:09.524066+0000 mgr.smithi049.pzczis (mgr.14180) 912 : cluster [DBG] pgmap v635: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:41:11.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:10 smithi195 bash[18068]: audit 2024-02-22T22:41:09.702973+0000 mgr.smithi049.pzczis (mgr.14180) 913 : audit [DBG] from='client.15188 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:41:11.363 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:41:12.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:12 smithi049 bash[14150]: cluster 2024-02-22T22:41:11.525352+0000 mgr.smithi049.pzczis (mgr.14180) 914 : 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-22T22:41:13.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:12 smithi195 bash[18068]: cluster 2024-02-22T22:41:11.525352+0000 mgr.smithi049.pzczis (mgr.14180) 914 : 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-22T22:41:14.534 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:41:14.534 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:23.450275Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.eviwdm on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\nDeploy daemon haproxy.nfs.foo.smithi195.eviwdm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.485690Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.bwoadr on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\nDeploy daemon haproxy.nfs.foo.smithi049.bwoadr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.487930Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.wmbkac on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:41:14.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:14 smithi049 bash[14150]: cluster 2024-02-22T22:41:13.526943+0000 mgr.smithi049.pzczis (mgr.14180) 915 : cluster [DBG] pgmap v637: 225 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-22T22:41:15.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:14 smithi195 bash[18068]: cluster 2024-02-22T22:41:13.526943+0000 mgr.smithi049.pzczis (mgr.14180) 915 : cluster [DBG] pgmap v637: 225 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-22T22:41:15.199 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:41:15.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:15 smithi049 bash[14150]: audit 2024-02-22T22:41:14.524677+0000 mgr.smithi049.pzczis (mgr.14180) 916 : audit [DBG] from='client.15192 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:41:16.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:15 smithi195 bash[18068]: audit 2024-02-22T22:41:14.524677+0000 mgr.smithi049.pzczis (mgr.14180) 916 : audit [DBG] from='client.15192 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:41:16.200 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:41:16.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:16 smithi049 bash[14150]: cluster 2024-02-22T22:41:15.528563+0000 mgr.smithi049.pzczis (mgr.14180) 917 : 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-22T22:41:17.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:16 smithi195 bash[18068]: cluster 2024-02-22T22:41:15.528563+0000 mgr.smithi049.pzczis (mgr.14180) 917 : 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-22T22:41:18.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:18 smithi049 bash[14150]: cluster 2024-02-22T22:41:17.530406+0000 mgr.smithi049.pzczis (mgr.14180) 918 : 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-22T22:41:19.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:18 smithi195 bash[18068]: cluster 2024-02-22T22:41:17.530406+0000 mgr.smithi049.pzczis (mgr.14180) 918 : 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-22T22:41:19.608 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:41:19.608 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:23.450275Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.eviwdm on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\nDeploy daemon haproxy.nfs.foo.smithi195.eviwdm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.485690Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.bwoadr on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\nDeploy daemon haproxy.nfs.foo.smithi049.bwoadr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.487930Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.wmbkac on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:41:20.361 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:41:20.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:20 smithi049 bash[14150]: cluster 2024-02-22T22:41:19.531412+0000 mgr.smithi049.pzczis (mgr.14180) 919 : cluster [DBG] pgmap v640: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:41:20.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:20 smithi049 bash[14150]: audit 2024-02-22T22:41:19.600382+0000 mgr.smithi049.pzczis (mgr.14180) 920 : audit [DBG] from='client.15196 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:41:21.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:20 smithi195 bash[18068]: cluster 2024-02-22T22:41:19.531412+0000 mgr.smithi049.pzczis (mgr.14180) 919 : cluster [DBG] pgmap v640: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:41:21.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:20 smithi195 bash[18068]: audit 2024-02-22T22:41:19.600382+0000 mgr.smithi049.pzczis (mgr.14180) 920 : audit [DBG] from='client.15196 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:41:21.363 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:41:22.742 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:22 smithi049 bash[14150]: cluster 2024-02-22T22:41:21.533163+0000 mgr.smithi049.pzczis (mgr.14180) 921 : 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-22T22:41:23.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:22 smithi195 bash[18068]: cluster 2024-02-22T22:41:21.533163+0000 mgr.smithi049.pzczis (mgr.14180) 921 : 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-22T22:41:24.559 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:41:24.560 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:23.450275Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.eviwdm on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\nDeploy daemon haproxy.nfs.foo.smithi195.eviwdm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.485690Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.bwoadr on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\nDeploy daemon haproxy.nfs.foo.smithi049.bwoadr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.487930Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.wmbkac on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:41:24.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:24 smithi049 bash[14150]: cluster 2024-02-22T22:41:23.534878+0000 mgr.smithi049.pzczis (mgr.14180) 922 : cluster [DBG] pgmap v642: 225 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-22T22:41:25.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:24 smithi195 bash[18068]: cluster 2024-02-22T22:41:23.534878+0000 mgr.smithi049.pzczis (mgr.14180) 922 : cluster [DBG] pgmap v642: 225 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-22T22:41:25.373 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:41:25.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:25 smithi049 bash[14150]: audit 2024-02-22T22:41:24.555253+0000 mgr.smithi049.pzczis (mgr.14180) 923 : audit [DBG] from='client.15200 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:41:26.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:25 smithi195 bash[18068]: audit 2024-02-22T22:41:24.555253+0000 mgr.smithi049.pzczis (mgr.14180) 923 : audit [DBG] from='client.15200 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:41:26.374 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:41:26.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:26 smithi049 bash[14150]: cluster 2024-02-22T22:41:25.536532+0000 mgr.smithi049.pzczis (mgr.14180) 924 : 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-22T22:41:27.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:26 smithi195 bash[18068]: cluster 2024-02-22T22:41:25.536532+0000 mgr.smithi049.pzczis (mgr.14180) 924 : 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-22T22:41:27.834 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:27 smithi049 bash[14150]: audit 2024-02-22T22:41:27.493161+0000 mon.smithi049 (mon.0) 908 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:41:28.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:27 smithi195 bash[18068]: audit 2024-02-22T22:41:27.493161+0000 mon.smithi049 (mon.0) 908 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:41:28.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:28 smithi049 bash[14150]: cluster 2024-02-22T22:41:27.537726+0000 mgr.smithi049.pzczis (mgr.14180) 925 : 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-22T22:41:28.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:28 smithi049 bash[14150]: audit 2024-02-22T22:41:27.764497+0000 mon.smithi049 (mon.0) 909 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:41:29.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:28 smithi195 bash[18068]: cluster 2024-02-22T22:41:27.537726+0000 mgr.smithi049.pzczis (mgr.14180) 925 : 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-22T22:41:29.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:28 smithi195 bash[18068]: audit 2024-02-22T22:41:27.764497+0000 mon.smithi049 (mon.0) 909 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:41:29.705 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:41:29.705 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:31:04.635875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:23.450275Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.eviwdm on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\nDeploy daemon haproxy.nfs.foo.smithi195.eviwdm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.485690Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.bwoadr on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\nDeploy daemon haproxy.nfs.foo.smithi049.bwoadr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.487930Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.wmbkac on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:31:04.636279Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:31:04.636654Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:31:04.636924Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:31:04.637182Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:31:04.638210Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:41:30.426 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:41:30.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:30 smithi049 bash[14150]: cluster 2024-02-22T22:41:29.538382+0000 mgr.smithi049.pzczis (mgr.14180) 926 : cluster [DBG] pgmap v645: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:41:30.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:30 smithi049 bash[14150]: audit 2024-02-22T22:41:29.701109+0000 mgr.smithi049.pzczis (mgr.14180) 927 : audit [DBG] from='client.15204 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:41:31.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:30 smithi195 bash[18068]: cluster 2024-02-22T22:41:29.538382+0000 mgr.smithi049.pzczis (mgr.14180) 926 : cluster [DBG] pgmap v645: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:41:31.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:30 smithi195 bash[18068]: audit 2024-02-22T22:41:29.701109+0000 mgr.smithi049.pzczis (mgr.14180) 927 : audit [DBG] from='client.15204 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:41:31.427 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:41:32.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:32 smithi049 bash[14150]: cluster 2024-02-22T22:41:31.540262+0000 mgr.smithi049.pzczis (mgr.14180) 928 : 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-22T22:41:33.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:32 smithi195 bash[18068]: cluster 2024-02-22T22:41:31.540262+0000 mgr.smithi049.pzczis (mgr.14180) 928 : 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-22T22:41:34.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:34 smithi195 bash[18068]: audit 2024-02-22T22:41:33.010603+0000 mon.smithi049 (mon.0) 910 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:41:34.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:34 smithi195 bash[18068]: audit 2024-02-22T22:41:33.304846+0000 mon.smithi049 (mon.0) 911 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:41:34.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:34 smithi195 bash[18068]: audit 2024-02-22T22:41:33.306410+0000 mon.smithi049 (mon.0) 912 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:41:34.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:34 smithi195 bash[18068]: audit 2024-02-22T22:41:33.313628+0000 mon.smithi049 (mon.0) 913 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:41:34.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:34 smithi195 bash[18068]: cluster 2024-02-22T22:41:33.315000+0000 mgr.smithi049.pzczis (mgr.14180) 929 : cluster [DBG] pgmap v647: 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-22T22:41:34.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:34 smithi195 bash[18068]: audit 2024-02-22T22:41:33.321111+0000 mon.smithi049 (mon.0) 914 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:41:34.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:34 smithi195 bash[18068]: audit 2024-02-22T22:41:33.332022+0000 mon.smithi049 (mon.0) 915 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:41:34.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:34 smithi195 bash[18068]: cephadm 2024-02-22T22:41:33.336460+0000 mgr.smithi049.pzczis (mgr.14180) 930 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.uafoip on smithi195 2024-02-22T22:41:34.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:34 smithi049 bash[14150]: audit 2024-02-22T22:41:33.010603+0000 mon.smithi049 (mon.0) 910 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:41:34.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:34 smithi049 bash[14150]: audit 2024-02-22T22:41:33.304846+0000 mon.smithi049 (mon.0) 911 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:41:34.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:34 smithi049 bash[14150]: audit 2024-02-22T22:41:33.306410+0000 mon.smithi049 (mon.0) 912 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:41:34.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:34 smithi049 bash[14150]: audit 2024-02-22T22:41:33.313628+0000 mon.smithi049 (mon.0) 913 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:41:34.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:34 smithi049 bash[14150]: cluster 2024-02-22T22:41:33.315000+0000 mgr.smithi049.pzczis (mgr.14180) 929 : cluster [DBG] pgmap v647: 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-22T22:41:34.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:34 smithi049 bash[14150]: audit 2024-02-22T22:41:33.321111+0000 mon.smithi049 (mon.0) 914 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:41:34.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:34 smithi049 bash[14150]: audit 2024-02-22T22:41:33.332022+0000 mon.smithi049 (mon.0) 915 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:41:34.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:34 smithi049 bash[14150]: cephadm 2024-02-22T22:41:33.336460+0000 mgr.smithi049.pzczis (mgr.14180) 930 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.uafoip on smithi195 2024-02-22T22:41:34.565 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:41:34.566 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:32:20.495851Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:39:19.221242Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hykyih on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:23.450275Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.eviwdm on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\nDeploy daemon haproxy.nfs.foo.smithi195.eviwdm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.485690Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.bwoadr on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\nDeploy daemon haproxy.nfs.foo.smithi049.bwoadr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.487930Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.wmbkac on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:32:20.495402Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:32:20.495077Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:32:20.496265Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:32:20.496672Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:32:20.497507Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:41:35.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:35 smithi195 bash[18068]: cluster 2024-02-22T22:41:34.311472+0000 mon.smithi049 (mon.0) 916 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:41:35.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:35 smithi195 bash[18068]: cluster 2024-02-22T22:41:34.311539+0000 mon.smithi049 (mon.0) 917 : cluster [INF] Cluster is now healthy 2024-02-22T22:41:35.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:35 smithi195 bash[18068]: audit 2024-02-22T22:41:34.561268+0000 mgr.smithi049.pzczis (mgr.14180) 931 : audit [DBG] from='client.15208 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:41:35.350 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:35 smithi049 bash[14150]: cluster 2024-02-22T22:41:34.311472+0000 mon.smithi049 (mon.0) 916 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:41:35.350 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:35 smithi049 bash[14150]: cluster 2024-02-22T22:41:34.311539+0000 mon.smithi049 (mon.0) 917 : cluster [INF] Cluster is now healthy 2024-02-22T22:41:35.350 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:35 smithi049 bash[14150]: audit 2024-02-22T22:41:34.561268+0000 mgr.smithi049.pzczis (mgr.14180) 931 : audit [DBG] from='client.15208 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:41:35.352 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:41:36.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:36 smithi195 bash[18068]: cluster 2024-02-22T22:41:35.316296+0000 mgr.smithi049.pzczis (mgr.14180) 932 : cluster [DBG] pgmap v648: 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-22T22:41:36.352 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:41:36.365 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:36 smithi049 bash[14150]: cluster 2024-02-22T22:41:35.316296+0000 mgr.smithi049.pzczis (mgr.14180) 932 : cluster [DBG] pgmap v648: 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-22T22:41:37.405 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:37 smithi049 bash[14150]: audit 2024-02-22T22:41:37.149869+0000 mon.smithi049 (mon.0) 918 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.uafoip"}]: dispatch 2024-02-22T22:41:37.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:37 smithi195 bash[18068]: audit 2024-02-22T22:41:37.149869+0000 mon.smithi049 (mon.0) 918 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.uafoip"}]: dispatch 2024-02-22T22:41:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: cephadm 2024-02-22T22:41:37.148792+0000 mgr.smithi049.pzczis (mgr.14180) 933 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip 2024-02-22T22:41:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:41:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip 2024-02-22T22:41:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip 2024-02-22T22:41:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:41:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip 2024-02-22T22:41:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.uafoip ... 2024-02-22T22:41:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:41:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:41:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:41:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:41:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:41:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:41:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:41:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:41:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:41:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:41:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip 2024-02-22T22:41:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:41:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip 2024-02-22T22:41:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip 2024-02-22T22:41:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:41:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip 2024-02-22T22:41:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.uafoip ... 2024-02-22T22:41:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:41:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:41:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:41:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:41:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:41:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: cephadm 2024-02-22T22:41:37.149331+0000 mgr.smithi049.pzczis (mgr.14180) 934 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.uafoip 2024-02-22T22:41:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: cephadm 2024-02-22T22:41:37.151549+0000 mgr.smithi049.pzczis (mgr.14180) 935 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.uafoip on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip 2024-02-22T22:41:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:41:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip 2024-02-22T22:41:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip 2024-02-22T22:41:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:41:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip 2024-02-22T22:41:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.uafoip ... 2024-02-22T22:41:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:41:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:41:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:41:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:41:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:41:38.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: cephadm 2024-02-22T22:41:37.156139+0000 mgr.smithi049.pzczis (mgr.14180) 936 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.yiomjv on smithi049 2024-02-22T22:41:38.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: cluster 2024-02-22T22:41:37.317881+0000 mgr.smithi049.pzczis (mgr.14180) 937 : cluster [DBG] pgmap v649: 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-22T22:41:38.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:38 smithi049 bash[14150]: audit 2024-02-22T22:41:37.665567+0000 mon.smithi049 (mon.0) 919 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:41:39.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: cephadm 2024-02-22T22:41:37.148792+0000 mgr.smithi049.pzczis (mgr.14180) 933 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip 2024-02-22T22:41:39.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:41:39.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip 2024-02-22T22:41:39.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip 2024-02-22T22:41:39.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:41:39.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip 2024-02-22T22:41:39.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.uafoip ... 2024-02-22T22:41:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:41:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:41:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:41:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:41:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:41:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:41:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:41:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:41:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:41:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:41:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip 2024-02-22T22:41:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:41:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip 2024-02-22T22:41:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip 2024-02-22T22:41:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:41:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip 2024-02-22T22:41:39.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.uafoip ... 2024-02-22T22:41:39.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:41:39.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:41:39.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:41:39.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:41:39.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:41:39.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: cephadm 2024-02-22T22:41:37.149331+0000 mgr.smithi049.pzczis (mgr.14180) 934 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.uafoip 2024-02-22T22:41:39.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: cephadm 2024-02-22T22:41:37.151549+0000 mgr.smithi049.pzczis (mgr.14180) 935 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.uafoip on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip 2024-02-22T22:41:39.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:41:39.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip 2024-02-22T22:41:39.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip 2024-02-22T22:41:39.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:41:39.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip 2024-02-22T22:41:39.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.uafoip ... 2024-02-22T22:41:39.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:41:39.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:41:39.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:41:39.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:41:39.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:41:39.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: cephadm 2024-02-22T22:41:37.156139+0000 mgr.smithi049.pzczis (mgr.14180) 936 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.yiomjv on smithi049 2024-02-22T22:41:39.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: cluster 2024-02-22T22:41:37.317881+0000 mgr.smithi049.pzczis (mgr.14180) 937 : cluster [DBG] pgmap v649: 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-22T22:41:39.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:38 smithi195 bash[18068]: audit 2024-02-22T22:41:37.665567+0000 mon.smithi049 (mon.0) 919 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:41:39.466 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:41:39.466 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:32:20.495851Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:40:23.450275Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.eviwdm on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-eviwdm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.eviwdm\nDeploy daemon haproxy.nfs.foo.smithi195.eviwdm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.485690Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.bwoadr on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-bwoadr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.bwoadr\nDeploy daemon haproxy.nfs.foo.smithi049.bwoadr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:40:27.487930Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.wmbkac on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:37.151213Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.uafoip on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\nDeploy daemon haproxy.nfs.foo.smithi195.uafoip ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:32:20.495402Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:32:20.495077Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:32:20.496265Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:32:20.496672Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:32:20.497507Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:41:40.177 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:41:40.863 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:40 smithi049 bash[14150]: cluster 2024-02-22T22:41:39.318856+0000 mgr.smithi049.pzczis (mgr.14180) 938 : cluster [DBG] pgmap v650: 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-22T22:41:40.864 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:40 smithi049 bash[14150]: audit 2024-02-22T22:41:39.455333+0000 mgr.smithi049.pzczis (mgr.14180) 939 : audit [DBG] from='client.15212 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:41:41.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:40 smithi195 bash[18068]: cluster 2024-02-22T22:41:39.318856+0000 mgr.smithi049.pzczis (mgr.14180) 938 : cluster [DBG] pgmap v650: 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-22T22:41:41.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:40 smithi195 bash[18068]: audit 2024-02-22T22:41:39.455333+0000 mgr.smithi049.pzczis (mgr.14180) 939 : audit [DBG] from='client.15212 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:41:41.178 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:41:41.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:41 smithi049 bash[14150]: audit 2024-02-22T22:41:40.938535+0000 mon.smithi049 (mon.0) 920 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.yiomjv"}]: dispatch 2024-02-22T22:41:42.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:41 smithi195 bash[18068]: audit 2024-02-22T22:41:40.938535+0000 mon.smithi049 (mon.0) 920 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.yiomjv"}]: dispatch 2024-02-22T22:41:42.714 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: cephadm 2024-02-22T22:41:40.937302+0000 mgr.smithi049.pzczis (mgr.14180) 940 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv 2024-02-22T22:41:42.715 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:41:42.715 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv 2024-02-22T22:41:42.715 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv 2024-02-22T22:41:42.715 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:41:42.715 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv 2024-02-22T22:41:42.715 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.yiomjv ... 2024-02-22T22:41:42.715 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:41:42.715 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:41:42.715 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:41:42.715 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:41:42.715 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:41:42.715 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:41:42.715 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:41:42.715 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:41:42.716 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:41:42.716 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:41:42.716 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv 2024-02-22T22:41:42.716 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:41:42.716 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv 2024-02-22T22:41:42.716 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv 2024-02-22T22:41:42.716 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:41:42.716 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv 2024-02-22T22:41:42.716 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.yiomjv ... 2024-02-22T22:41:42.716 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:41:42.716 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:41:42.716 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:41:42.716 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:41:42.716 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:41:42.717 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: cephadm 2024-02-22T22:41:40.937876+0000 mgr.smithi049.pzczis (mgr.14180) 941 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.yiomjv 2024-02-22T22:41:42.717 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: cephadm 2024-02-22T22:41:40.940155+0000 mgr.smithi049.pzczis (mgr.14180) 942 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.yiomjv on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv 2024-02-22T22:41:42.717 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:41:42.717 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv 2024-02-22T22:41:42.717 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv 2024-02-22T22:41:42.717 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:41:42.717 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv 2024-02-22T22:41:42.717 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.yiomjv ... 2024-02-22T22:41:42.717 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:41:42.717 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:41:42.717 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:41:42.717 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:41:42.717 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:41:42.717 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: cephadm 2024-02-22T22:41:40.944299+0000 mgr.smithi049.pzczis (mgr.14180) 943 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.jddotu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:41:42.717 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: cephadm 2024-02-22T22:41:40.946028+0000 mgr.smithi049.pzczis (mgr.14180) 944 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:41:42.718 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: cluster 2024-02-22T22:41:40.947489+0000 mgr.smithi049.pzczis (mgr.14180) 945 : cluster [DBG] pgmap v651: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 89 B/s rd, 0 op/s 2024-02-22T22:41:42.718 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: cluster 2024-02-22T22:41:41.675369+0000 mon.smithi049 (mon.0) 921 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:41:42.718 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:42 smithi049 bash[14150]: audit 2024-02-22T22:41:41.707360+0000 mon.smithi049 (mon.0) 922 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:41:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: cephadm 2024-02-22T22:41:40.937302+0000 mgr.smithi049.pzczis (mgr.14180) 940 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv 2024-02-22T22:41:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:41:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv 2024-02-22T22:41:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv 2024-02-22T22:41:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:41:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv 2024-02-22T22:41:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.yiomjv ... 2024-02-22T22:41:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:41:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:41:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:41:43.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:41:43.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:41:43.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:41:43.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:41:43.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:41:43.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:41:43.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:41:43.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv 2024-02-22T22:41:43.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:41:43.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv 2024-02-22T22:41:43.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv 2024-02-22T22:41:43.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:41:43.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv 2024-02-22T22:41:43.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.yiomjv ... 2024-02-22T22:41:43.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:41:43.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:41:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:41:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:41:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:41:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: cephadm 2024-02-22T22:41:40.937876+0000 mgr.smithi049.pzczis (mgr.14180) 941 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.yiomjv 2024-02-22T22:41:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: cephadm 2024-02-22T22:41:40.940155+0000 mgr.smithi049.pzczis (mgr.14180) 942 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.yiomjv on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv 2024-02-22T22:41:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:41:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv 2024-02-22T22:41:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv 2024-02-22T22:41:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:41:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv 2024-02-22T22:41:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.yiomjv ... 2024-02-22T22:41:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:41:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:41:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:41:43.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:41:43.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:41:43.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: cephadm 2024-02-22T22:41:40.944299+0000 mgr.smithi049.pzczis (mgr.14180) 943 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.jddotu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:41:43.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: cephadm 2024-02-22T22:41:40.946028+0000 mgr.smithi049.pzczis (mgr.14180) 944 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:41:43.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: cluster 2024-02-22T22:41:40.947489+0000 mgr.smithi049.pzczis (mgr.14180) 945 : cluster [DBG] pgmap v651: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 89 B/s rd, 0 op/s 2024-02-22T22:41:43.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: cluster 2024-02-22T22:41:41.675369+0000 mon.smithi049 (mon.0) 921 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:41:43.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:42 smithi195 bash[18068]: audit 2024-02-22T22:41:41.707360+0000 mon.smithi049 (mon.0) 922 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:41:44.496 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:41:44.496 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:32:20.495851Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:37.151213Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.uafoip on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\nDeploy daemon haproxy.nfs.foo.smithi195.uafoip ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.939919Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yiomjv on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\nDeploy daemon haproxy.nfs.foo.smithi049.yiomjv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.944138Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jddotu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:32:20.495402Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:32:20.495077Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:32:20.496265Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:32:20.496672Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:32:20.497507Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:41:44.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:44 smithi049 bash[14150]: cluster 2024-02-22T22:41:42.949110+0000 mgr.smithi049.pzczis (mgr.14180) 946 : cluster [DBG] pgmap v652: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 179 B/s rd, 0 op/s 2024-02-22T22:41:45.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:44 smithi195 bash[18068]: cluster 2024-02-22T22:41:42.949110+0000 mgr.smithi049.pzczis (mgr.14180) 946 : cluster [DBG] pgmap v652: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 179 B/s rd, 0 op/s 2024-02-22T22:41:45.209 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:41:46.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:45 smithi195 bash[18068]: audit 2024-02-22T22:41:44.492820+0000 mgr.smithi049.pzczis (mgr.14180) 947 : audit [DBG] from='client.15216 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:41:46.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:45 smithi049 bash[14150]: audit 2024-02-22T22:41:44.492820+0000 mgr.smithi049.pzczis (mgr.14180) 947 : audit [DBG] from='client.15216 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:41:46.210 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:41:46.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:46 smithi049 bash[14150]: cluster 2024-02-22T22:41:44.949768+0000 mgr.smithi049.pzczis (mgr.14180) 948 : cluster [DBG] pgmap v653: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 88 B/s rd, 0 op/s 2024-02-22T22:41:47.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:46 smithi195 bash[18068]: cluster 2024-02-22T22:41:44.949768+0000 mgr.smithi049.pzczis (mgr.14180) 948 : cluster [DBG] pgmap v653: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 88 B/s rd, 0 op/s 2024-02-22T22:41:49.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:48 smithi195 bash[18068]: cluster 2024-02-22T22:41:46.951186+0000 mgr.smithi049.pzczis (mgr.14180) 949 : cluster [DBG] pgmap v654: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 88 B/s rd, 0 op/s 2024-02-22T22:41:49.124 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:48 smithi049 bash[14150]: cluster 2024-02-22T22:41:46.951186+0000 mgr.smithi049.pzczis (mgr.14180) 949 : cluster [DBG] pgmap v654: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 88 B/s rd, 0 op/s 2024-02-22T22:41:49.563 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:41:49.563 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:32:20.495851Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:37.151213Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.uafoip on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\nDeploy daemon haproxy.nfs.foo.smithi195.uafoip ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.939919Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yiomjv on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\nDeploy daemon haproxy.nfs.foo.smithi049.yiomjv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.944138Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jddotu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:32:20.495402Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:32:20.495077Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:32:20.496265Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:32:20.496672Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:32:20.497507Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:41:50.331 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:41:51.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:50 smithi195 bash[18068]: cluster 2024-02-22T22:41:48.952768+0000 mgr.smithi049.pzczis (mgr.14180) 950 : cluster [DBG] pgmap v655: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 88 B/s rd, 0 op/s 2024-02-22T22:41:51.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:50 smithi195 bash[18068]: audit 2024-02-22T22:41:49.553863+0000 mgr.smithi049.pzczis (mgr.14180) 951 : audit [DBG] from='client.15220 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:41:51.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:50 smithi049 bash[14150]: cluster 2024-02-22T22:41:48.952768+0000 mgr.smithi049.pzczis (mgr.14180) 950 : cluster [DBG] pgmap v655: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 88 B/s rd, 0 op/s 2024-02-22T22:41:51.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:50 smithi049 bash[14150]: audit 2024-02-22T22:41:49.553863+0000 mgr.smithi049.pzczis (mgr.14180) 951 : audit [DBG] from='client.15220 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:41:51.331 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:41:52.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:52 smithi049 bash[14150]: cluster 2024-02-22T22:41:50.954731+0000 mgr.smithi049.pzczis (mgr.14180) 952 : cluster [DBG] pgmap v656: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 88 B/s rd, 0 op/s 2024-02-22T22:41:52.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:52 smithi049 bash[14150]: audit 2024-02-22T22:41:52.665251+0000 mon.smithi049 (mon.0) 923 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:41:53.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:52 smithi195 bash[18068]: cluster 2024-02-22T22:41:50.954731+0000 mgr.smithi049.pzczis (mgr.14180) 952 : cluster [DBG] pgmap v656: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 88 B/s rd, 0 op/s 2024-02-22T22:41:53.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:52 smithi195 bash[18068]: audit 2024-02-22T22:41:52.665251+0000 mon.smithi049 (mon.0) 923 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:41:54.588 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:41:54.588 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:32:20.495851Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:37.151213Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.uafoip on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\nDeploy daemon haproxy.nfs.foo.smithi195.uafoip ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.939919Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yiomjv on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\nDeploy daemon haproxy.nfs.foo.smithi049.yiomjv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.944138Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jddotu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:32:20.495402Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:32:20.495077Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:32:20.496265Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:32:20.496672Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:32:20.497507Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:41:54.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:54 smithi049 bash[14150]: cluster 2024-02-22T22:41:52.956393+0000 mgr.smithi049.pzczis (mgr.14180) 953 : cluster [DBG] pgmap v657: 225 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-22T22:41:55.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:54 smithi195 bash[18068]: cluster 2024-02-22T22:41:52.956393+0000 mgr.smithi049.pzczis (mgr.14180) 953 : cluster [DBG] pgmap v657: 225 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-22T22:41:55.322 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:41:56.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:55 smithi195 bash[18068]: audit 2024-02-22T22:41:54.579249+0000 mgr.smithi049.pzczis (mgr.14180) 954 : audit [DBG] from='client.15224 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:41:56.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:55 smithi049 bash[14150]: audit 2024-02-22T22:41:54.579249+0000 mgr.smithi049.pzczis (mgr.14180) 954 : audit [DBG] from='client.15224 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:41:56.323 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:41:57.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:56 smithi195 bash[18068]: cluster 2024-02-22T22:41:54.957459+0000 mgr.smithi049.pzczis (mgr.14180) 955 : cluster [DBG] pgmap v658: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:41:57.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:56 smithi049 bash[14150]: cluster 2024-02-22T22:41:54.957459+0000 mgr.smithi049.pzczis (mgr.14180) 955 : cluster [DBG] pgmap v658: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:41:58.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:41:57 smithi195 bash[18068]: cluster 2024-02-22T22:41:56.959220+0000 mgr.smithi049.pzczis (mgr.14180) 956 : cluster [DBG] pgmap v659: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:41:58.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:41:57 smithi049 bash[14150]: cluster 2024-02-22T22:41:56.959220+0000 mgr.smithi049.pzczis (mgr.14180) 956 : cluster [DBG] pgmap v659: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:41:59.512 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:41:59.512 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:32:20.495851Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:37.151213Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.uafoip on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\nDeploy daemon haproxy.nfs.foo.smithi195.uafoip ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.939919Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yiomjv on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\nDeploy daemon haproxy.nfs.foo.smithi049.yiomjv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.944138Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jddotu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:32:20.495402Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:32:20.495077Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:32:20.496265Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:32:20.496672Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:32:20.497507Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:42:00.220 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:42:00.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:00 smithi049 bash[14150]: cluster 2024-02-22T22:41:58.960828+0000 mgr.smithi049.pzczis (mgr.14180) 957 : cluster [DBG] pgmap v660: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:42:00.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:00 smithi049 bash[14150]: audit 2024-02-22T22:41:59.503495+0000 mgr.smithi049.pzczis (mgr.14180) 958 : audit [DBG] from='client.15228 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:42:00.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:00 smithi195 bash[18068]: cluster 2024-02-22T22:41:58.960828+0000 mgr.smithi049.pzczis (mgr.14180) 957 : cluster [DBG] pgmap v660: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:42:00.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:00 smithi195 bash[18068]: audit 2024-02-22T22:41:59.503495+0000 mgr.smithi049.pzczis (mgr.14180) 958 : audit [DBG] from='client.15228 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:42:01.221 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:42:02.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:02 smithi049 bash[14150]: cluster 2024-02-22T22:42:00.962778+0000 mgr.smithi049.pzczis (mgr.14180) 959 : cluster [DBG] pgmap v661: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:42:02.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:02 smithi195 bash[18068]: cluster 2024-02-22T22:42:00.962778+0000 mgr.smithi049.pzczis (mgr.14180) 959 : cluster [DBG] pgmap v661: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:42:04.296 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:42:04.296 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:32:20.495851Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:37.151213Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.uafoip on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\nDeploy daemon haproxy.nfs.foo.smithi195.uafoip ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.939919Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yiomjv on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\nDeploy daemon haproxy.nfs.foo.smithi049.yiomjv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.944138Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jddotu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:32:20.495402Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:32:20.495077Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:32:20.496265Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:32:20.496672Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:32:20.497507Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:42:04.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:04 smithi049 bash[14150]: cluster 2024-02-22T22:42:02.963653+0000 mgr.smithi049.pzczis (mgr.14180) 960 : cluster [DBG] pgmap v662: 225 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-22T22:42:04.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:04 smithi195 bash[18068]: cluster 2024-02-22T22:42:02.963653+0000 mgr.smithi049.pzczis (mgr.14180) 960 : cluster [DBG] pgmap v662: 225 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-22T22:42:05.048 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:42:05.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:05 smithi049 bash[14150]: audit 2024-02-22T22:42:04.288266+0000 mgr.smithi049.pzczis (mgr.14180) 961 : audit [DBG] from='client.15232 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:42:05.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:05 smithi195 bash[18068]: audit 2024-02-22T22:42:04.288266+0000 mgr.smithi049.pzczis (mgr.14180) 961 : audit [DBG] from='client.15232 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:42:06.050 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:42:06.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:06 smithi049 bash[14150]: cluster 2024-02-22T22:42:04.964659+0000 mgr.smithi049.pzczis (mgr.14180) 962 : cluster [DBG] pgmap v663: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:42:06.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:06 smithi195 bash[18068]: cluster 2024-02-22T22:42:04.964659+0000 mgr.smithi049.pzczis (mgr.14180) 962 : cluster [DBG] pgmap v663: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:42:08.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:08 smithi049 bash[14150]: cluster 2024-02-22T22:42:06.966865+0000 mgr.smithi049.pzczis (mgr.14180) 963 : cluster [DBG] pgmap v664: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:42:08.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:08 smithi195 bash[18068]: cluster 2024-02-22T22:42:06.966865+0000 mgr.smithi049.pzczis (mgr.14180) 963 : cluster [DBG] pgmap v664: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:42:09.254 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:42:09.254 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:32:20.495851Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:37.151213Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.uafoip on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\nDeploy daemon haproxy.nfs.foo.smithi195.uafoip ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.939919Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yiomjv on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\nDeploy daemon haproxy.nfs.foo.smithi049.yiomjv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.944138Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jddotu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:32:20.495402Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:32:20.495077Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:32:20.496265Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:32:20.496672Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:32:20.497507Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:42:10.001 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:42:10.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:10 smithi049 bash[14150]: cluster 2024-02-22T22:42:08.968433+0000 mgr.smithi049.pzczis (mgr.14180) 964 : cluster [DBG] pgmap v665: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:42:10.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:10 smithi049 bash[14150]: audit 2024-02-22T22:42:09.249075+0000 mgr.smithi049.pzczis (mgr.14180) 965 : audit [DBG] from='client.15236 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:42:10.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:10 smithi195 bash[18068]: cluster 2024-02-22T22:42:08.968433+0000 mgr.smithi049.pzczis (mgr.14180) 964 : cluster [DBG] pgmap v665: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:42:10.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:10 smithi195 bash[18068]: audit 2024-02-22T22:42:09.249075+0000 mgr.smithi049.pzczis (mgr.14180) 965 : audit [DBG] from='client.15236 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:42:11.002 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:42:12.400 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:12 smithi049 bash[14150]: cluster 2024-02-22T22:42:10.970332+0000 mgr.smithi049.pzczis (mgr.14180) 966 : 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-22T22:42:12.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:12 smithi195 bash[18068]: cluster 2024-02-22T22:42:10.970332+0000 mgr.smithi049.pzczis (mgr.14180) 966 : 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-22T22:42:14.140 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:42:14.141 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:32:20.495851Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:37.151213Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.uafoip on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\nDeploy daemon haproxy.nfs.foo.smithi195.uafoip ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.939919Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yiomjv on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\nDeploy daemon haproxy.nfs.foo.smithi049.yiomjv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.944138Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jddotu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:32:20.495402Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:32:20.495077Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:32:20.496265Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:32:20.496672Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:32:20.497507Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:42:14.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:14 smithi049 bash[14150]: cluster 2024-02-22T22:42:12.971288+0000 mgr.smithi049.pzczis (mgr.14180) 967 : 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-22T22:42:14.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:14 smithi195 bash[18068]: cluster 2024-02-22T22:42:12.971288+0000 mgr.smithi049.pzczis (mgr.14180) 967 : 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-22T22:42:14.915 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:42:15.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:15 smithi195 bash[18068]: audit 2024-02-22T22:42:14.133883+0000 mgr.smithi049.pzczis (mgr.14180) 968 : audit [DBG] from='client.15240 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:42:15.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:15 smithi049 bash[14150]: audit 2024-02-22T22:42:14.133883+0000 mgr.smithi049.pzczis (mgr.14180) 968 : audit [DBG] from='client.15240 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:42:15.916 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:42:16.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:16 smithi049 bash[14150]: cluster 2024-02-22T22:42:14.972254+0000 mgr.smithi049.pzczis (mgr.14180) 969 : 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-22T22:42:16.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:16 smithi195 bash[18068]: cluster 2024-02-22T22:42:14.972254+0000 mgr.smithi049.pzczis (mgr.14180) 969 : 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-22T22:42:18.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:18 smithi049 bash[14150]: cluster 2024-02-22T22:42:16.974040+0000 mgr.smithi049.pzczis (mgr.14180) 970 : 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-22T22:42:18.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:18 smithi195 bash[18068]: cluster 2024-02-22T22:42:16.974040+0000 mgr.smithi049.pzczis (mgr.14180) 970 : 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-22T22:42:19.062 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:42:19.062 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:32:20.495851Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:37.151213Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.uafoip on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\nDeploy daemon haproxy.nfs.foo.smithi195.uafoip ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.939919Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yiomjv on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\nDeploy daemon haproxy.nfs.foo.smithi049.yiomjv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.944138Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jddotu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:32:20.495402Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:32:20.495077Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:32:20.496265Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:32:20.496672Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:32:20.497507Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:42:19.773 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:42:20.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:20 smithi195 bash[18068]: cluster 2024-02-22T22:42:18.975649+0000 mgr.smithi049.pzczis (mgr.14180) 971 : 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-22T22:42:20.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:20 smithi195 bash[18068]: audit 2024-02-22T22:42:19.053880+0000 mgr.smithi049.pzczis (mgr.14180) 972 : audit [DBG] from='client.15244 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:42:20.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:20 smithi049 bash[14150]: cluster 2024-02-22T22:42:18.975649+0000 mgr.smithi049.pzczis (mgr.14180) 971 : 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-22T22:42:20.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:20 smithi049 bash[14150]: audit 2024-02-22T22:42:19.053880+0000 mgr.smithi049.pzczis (mgr.14180) 972 : audit [DBG] from='client.15244 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:42:20.775 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:42:22.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:22 smithi049 bash[14150]: cluster 2024-02-22T22:42:20.976662+0000 mgr.smithi049.pzczis (mgr.14180) 973 : 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-22T22:42:22.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:22 smithi195 bash[18068]: cluster 2024-02-22T22:42:20.976662+0000 mgr.smithi049.pzczis (mgr.14180) 973 : 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-22T22:42:24.029 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:42:24.029 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:32:20.495851Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:37.151213Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.uafoip on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\nDeploy daemon haproxy.nfs.foo.smithi195.uafoip ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.939919Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yiomjv on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\nDeploy daemon haproxy.nfs.foo.smithi049.yiomjv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.944138Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jddotu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:32:20.495402Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:32:20.495077Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:32:20.496265Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:32:20.496672Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:32:20.497507Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:42:24.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:24 smithi049 bash[14150]: cluster 2024-02-22T22:42:22.977960+0000 mgr.smithi049.pzczis (mgr.14180) 974 : 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-22T22:42:24.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:24 smithi195 bash[18068]: cluster 2024-02-22T22:42:22.977960+0000 mgr.smithi049.pzczis (mgr.14180) 974 : 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-22T22:42:24.826 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:42:25.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:25 smithi195 bash[18068]: audit 2024-02-22T22:42:24.020642+0000 mgr.smithi049.pzczis (mgr.14180) 975 : audit [DBG] from='client.15248 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:42:25.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:25 smithi049 bash[14150]: audit 2024-02-22T22:42:24.020642+0000 mgr.smithi049.pzczis (mgr.14180) 975 : audit [DBG] from='client.15248 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:42:25.827 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:42:26.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:26 smithi049 bash[14150]: cluster 2024-02-22T22:42:24.979046+0000 mgr.smithi049.pzczis (mgr.14180) 976 : 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-22T22:42:26.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:26 smithi195 bash[18068]: cluster 2024-02-22T22:42:24.979046+0000 mgr.smithi049.pzczis (mgr.14180) 976 : 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-22T22:42:28.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:28 smithi049 bash[14150]: cluster 2024-02-22T22:42:26.980212+0000 mgr.smithi049.pzczis (mgr.14180) 977 : 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-22T22:42:28.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:28 smithi195 bash[18068]: cluster 2024-02-22T22:42:26.980212+0000 mgr.smithi049.pzczis (mgr.14180) 977 : 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-22T22:42:29.296 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:42:29.296 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:32:20.495851Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:37.151213Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.uafoip on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\nDeploy daemon haproxy.nfs.foo.smithi195.uafoip ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.939919Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yiomjv on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\nDeploy daemon haproxy.nfs.foo.smithi049.yiomjv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.944138Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jddotu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:32:20.495402Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:32:20.495077Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:32:20.496265Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:32:20.496672Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:32:20.497507Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:42:30.091 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:42:30.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:30 smithi049 bash[14150]: cluster 2024-02-22T22:42:28.981861+0000 mgr.smithi049.pzczis (mgr.14180) 978 : 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-22T22:42:30.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:30 smithi049 bash[14150]: audit 2024-02-22T22:42:29.288816+0000 mgr.smithi049.pzczis (mgr.14180) 979 : audit [DBG] from='client.15252 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:42:30.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:30 smithi195 bash[18068]: cluster 2024-02-22T22:42:28.981861+0000 mgr.smithi049.pzczis (mgr.14180) 978 : 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-22T22:42:30.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:30 smithi195 bash[18068]: audit 2024-02-22T22:42:29.288816+0000 mgr.smithi049.pzczis (mgr.14180) 979 : audit [DBG] from='client.15252 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:42:31.092 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:42:32.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:32 smithi195 bash[18068]: cluster 2024-02-22T22:42:30.983831+0000 mgr.smithi049.pzczis (mgr.14180) 980 : 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-22T22:42:32.568 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:32 smithi049 bash[14150]: cluster 2024-02-22T22:42:30.983831+0000 mgr.smithi049.pzczis (mgr.14180) 980 : 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-22T22:42:34.431 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:42:34.431 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:32:20.495851Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:37.151213Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.uafoip on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\nDeploy daemon haproxy.nfs.foo.smithi195.uafoip ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.939919Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yiomjv on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\nDeploy daemon haproxy.nfs.foo.smithi049.yiomjv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.944138Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jddotu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:32:20.495402Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:32:20.495077Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:32:20.496265Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:32:20.496672Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:32:20.497507Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:42:34.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:34 smithi049 bash[14150]: cluster 2024-02-22T22:42:32.985821+0000 mgr.smithi049.pzczis (mgr.14180) 981 : 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-22T22:42:34.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:34 smithi195 bash[18068]: cluster 2024-02-22T22:42:32.985821+0000 mgr.smithi049.pzczis (mgr.14180) 981 : 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-22T22:42:35.158 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:42:35.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:35 smithi049 bash[14150]: audit 2024-02-22T22:42:34.426547+0000 mgr.smithi049.pzczis (mgr.14180) 982 : audit [DBG] from='client.15256 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:42:35.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:35 smithi195 bash[18068]: audit 2024-02-22T22:42:34.426547+0000 mgr.smithi049.pzczis (mgr.14180) 982 : audit [DBG] from='client.15256 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:42:36.159 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:42:36.445 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:36 smithi049 bash[14150]: cluster 2024-02-22T22:42:34.986878+0000 mgr.smithi049.pzczis (mgr.14180) 983 : 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-22T22:42:36.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:36 smithi195 bash[18068]: cluster 2024-02-22T22:42:34.986878+0000 mgr.smithi049.pzczis (mgr.14180) 983 : 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-22T22:42:38.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:38 smithi195 bash[18068]: cluster 2024-02-22T22:42:36.989039+0000 mgr.smithi049.pzczis (mgr.14180) 984 : 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-22T22:42:38.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:38 smithi049 bash[14150]: cluster 2024-02-22T22:42:36.989039+0000 mgr.smithi049.pzczis (mgr.14180) 984 : 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-22T22:42:39.665 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:42:39.666 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:32:20.495851Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:37.151213Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.uafoip on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\nDeploy daemon haproxy.nfs.foo.smithi195.uafoip ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.939919Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yiomjv on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\nDeploy daemon haproxy.nfs.foo.smithi049.yiomjv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.944138Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jddotu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:32:20.495402Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:32:20.495077Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:32:20.496265Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:32:20.496672Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:32:20.497507Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:42:40.490 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:42:40.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:40 smithi195 bash[18068]: cluster 2024-02-22T22:42:38.990074+0000 mgr.smithi049.pzczis (mgr.14180) 985 : 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-22T22:42:40.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:40 smithi195 bash[18068]: audit 2024-02-22T22:42:39.655305+0000 mgr.smithi049.pzczis (mgr.14180) 986 : audit [DBG] from='client.15260 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:42:40.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:40 smithi049 bash[14150]: cluster 2024-02-22T22:42:38.990074+0000 mgr.smithi049.pzczis (mgr.14180) 985 : 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-22T22:42:40.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:40 smithi049 bash[14150]: audit 2024-02-22T22:42:39.655305+0000 mgr.smithi049.pzczis (mgr.14180) 986 : audit [DBG] from='client.15260 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:42:41.491 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:42:41.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:41 smithi195 bash[18068]: audit 2024-02-22T22:42:40.950280+0000 mon.smithi049 (mon.0) 924 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:42:41.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:41 smithi049 bash[14150]: audit 2024-02-22T22:42:40.950280+0000 mon.smithi049 (mon.0) 924 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:42:42.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:42 smithi195 bash[18068]: cluster 2024-02-22T22:42:40.991695+0000 mgr.smithi049.pzczis (mgr.14180) 987 : 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-22T22:42:42.564 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:42 smithi049 bash[14150]: cluster 2024-02-22T22:42:40.991695+0000 mgr.smithi049.pzczis (mgr.14180) 987 : 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-22T22:42:44.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:44 smithi195 bash[18068]: cluster 2024-02-22T22:42:42.993333+0000 mgr.smithi049.pzczis (mgr.14180) 988 : 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-22T22:42:44.627 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:42:44.627 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:32:20.495626Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:32:20.495851Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:32:20.496060Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:37.151213Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.uafoip on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\nDeploy daemon haproxy.nfs.foo.smithi195.uafoip ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.939919Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yiomjv on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\nDeploy daemon haproxy.nfs.foo.smithi049.yiomjv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.944138Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jddotu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:32:20.495402Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:32:20.495077Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:32:20.497715Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:32:20.496265Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:32:20.496672Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:32:20.496469Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:32:20.497507Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:42:44.659 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:44 smithi049 bash[14150]: cluster 2024-02-22T22:42:42.993333+0000 mgr.smithi049.pzczis (mgr.14180) 988 : 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-22T22:42:45.378 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:42:45.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:45 smithi195 bash[18068]: audit 2024-02-22T22:42:44.617690+0000 mgr.smithi049.pzczis (mgr.14180) 989 : audit [DBG] from='client.15264 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:42:45.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:45 smithi049 bash[14150]: audit 2024-02-22T22:42:44.617690+0000 mgr.smithi049.pzczis (mgr.14180) 989 : audit [DBG] from='client.15264 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:42:46.379 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:42:46.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:46 smithi195 bash[18068]: cluster 2024-02-22T22:42:44.994365+0000 mgr.smithi049.pzczis (mgr.14180) 990 : 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-22T22:42:46.566 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:46 smithi049 bash[14150]: cluster 2024-02-22T22:42:44.994365+0000 mgr.smithi049.pzczis (mgr.14180) 990 : 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-22T22:42:48.434 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:48 smithi049 bash[14150]: cluster 2024-02-22T22:42:46.996285+0000 mgr.smithi049.pzczis (mgr.14180) 991 : 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-22T22:42:48.434 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:48 smithi049 bash[14150]: audit 2024-02-22T22:42:47.174290+0000 mon.smithi049 (mon.0) 925 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:42:48.434 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:48 smithi049 bash[14150]: audit 2024-02-22T22:42:47.440174+0000 mon.smithi049 (mon.0) 926 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:42:48.434 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:48 smithi049 bash[14150]: audit 2024-02-22T22:42:47.441466+0000 mon.smithi049 (mon.0) 927 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:42:48.434 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:48 smithi049 bash[14150]: audit 2024-02-22T22:42:47.449536+0000 mon.smithi049 (mon.0) 928 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:42:48.434 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:48 smithi049 bash[14150]: cluster 2024-02-22T22:42:47.451204+0000 mgr.smithi049.pzczis (mgr.14180) 992 : cluster [DBG] pgmap v685: 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-22T22:42:48.434 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:48 smithi049 bash[14150]: audit 2024-02-22T22:42:47.457324+0000 mon.smithi049 (mon.0) 929 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:42:48.434 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:48 smithi049 bash[14150]: audit 2024-02-22T22:42:47.471812+0000 mon.smithi049 (mon.0) 930 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:42:48.435 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:48 smithi049 bash[14150]: cephadm 2024-02-22T22:42:47.475292+0000 mgr.smithi049.pzczis (mgr.14180) 993 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.cptryz on smithi195 2024-02-22T22:42:48.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:48 smithi195 bash[18068]: cluster 2024-02-22T22:42:46.996285+0000 mgr.smithi049.pzczis (mgr.14180) 991 : 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-22T22:42:48.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:48 smithi195 bash[18068]: audit 2024-02-22T22:42:47.174290+0000 mon.smithi049 (mon.0) 925 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:42:48.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:48 smithi195 bash[18068]: audit 2024-02-22T22:42:47.440174+0000 mon.smithi049 (mon.0) 926 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:42:48.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:48 smithi195 bash[18068]: audit 2024-02-22T22:42:47.441466+0000 mon.smithi049 (mon.0) 927 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:42:48.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:48 smithi195 bash[18068]: audit 2024-02-22T22:42:47.449536+0000 mon.smithi049 (mon.0) 928 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:42:48.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:48 smithi195 bash[18068]: cluster 2024-02-22T22:42:47.451204+0000 mgr.smithi049.pzczis (mgr.14180) 992 : cluster [DBG] pgmap v685: 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-22T22:42:48.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:48 smithi195 bash[18068]: audit 2024-02-22T22:42:47.457324+0000 mon.smithi049 (mon.0) 929 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:42:48.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:48 smithi195 bash[18068]: audit 2024-02-22T22:42:47.471812+0000 mon.smithi049 (mon.0) 930 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:42:48.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:48 smithi195 bash[18068]: cephadm 2024-02-22T22:42:47.475292+0000 mgr.smithi049.pzczis (mgr.14180) 993 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.cptryz on smithi195 2024-02-22T22:42:49.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:49 smithi049 bash[14150]: cluster 2024-02-22T22:42:48.446273+0000 mon.smithi049 (mon.0) 931 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:42:49.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:49 smithi049 bash[14150]: cluster 2024-02-22T22:42:48.446311+0000 mon.smithi049 (mon.0) 932 : cluster [INF] Cluster is now healthy 2024-02-22T22:42:49.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:49 smithi195 bash[18068]: cluster 2024-02-22T22:42:48.446273+0000 mon.smithi049 (mon.0) 931 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:42:49.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:49 smithi195 bash[18068]: cluster 2024-02-22T22:42:48.446311+0000 mon.smithi049 (mon.0) 932 : cluster [INF] Cluster is now healthy 2024-02-22T22:42:49.868 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:42:49.868 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:40:27.489523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tnmzur on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:37.151213Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.uafoip on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\nDeploy daemon haproxy.nfs.foo.smithi195.uafoip ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.939919Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yiomjv on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\nDeploy daemon haproxy.nfs.foo.smithi049.yiomjv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.944138Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jddotu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:42:50.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:50 smithi049 bash[14150]: cluster 2024-02-22T22:42:49.452192+0000 mgr.smithi049.pzczis (mgr.14180) 994 : cluster [DBG] pgmap v686: 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-22T22:42:50.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:50 smithi195 bash[18068]: cluster 2024-02-22T22:42:49.452192+0000 mgr.smithi049.pzczis (mgr.14180) 994 : cluster [DBG] pgmap v686: 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-22T22:42:50.702 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:42:51.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:51 smithi049 bash[14150]: audit 2024-02-22T22:42:49.864243+0000 mgr.smithi049.pzczis (mgr.14180) 995 : audit [DBG] from='client.15268 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:42:51.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:51 smithi195 bash[18068]: audit 2024-02-22T22:42:49.864243+0000 mgr.smithi049.pzczis (mgr.14180) 995 : audit [DBG] from='client.15268 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:42:51.702 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:42:52.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: cephadm 2024-02-22T22:42:51.282916+0000 mgr.smithi049.pzczis (mgr.14180) 996 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz 2024-02-22T22:42:52.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:42:52.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz 2024-02-22T22:42:52.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz 2024-02-22T22:42:52.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:42:52.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz 2024-02-22T22:42:52.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.cptryz ... 2024-02-22T22:42:52.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:42:52.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:42:52.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:42:52.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:42:52.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:42:52.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:42:52.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:42:52.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:42:52.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:42:52.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:42:52.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz 2024-02-22T22:42:52.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:42:52.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz 2024-02-22T22:42:52.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz 2024-02-22T22:42:52.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:42:52.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz 2024-02-22T22:42:52.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.cptryz ... 2024-02-22T22:42:52.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:42:52.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:42:52.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:42:52.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:42:52.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:42:52.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: cephadm 2024-02-22T22:42:51.283576+0000 mgr.smithi049.pzczis (mgr.14180) 997 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.cptryz 2024-02-22T22:42:52.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: audit 2024-02-22T22:42:51.284374+0000 mon.smithi049 (mon.0) 933 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.cptryz"}]: dispatch 2024-02-22T22:42:52.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: cephadm 2024-02-22T22:42:51.286389+0000 mgr.smithi049.pzczis (mgr.14180) 998 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.cptryz on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz 2024-02-22T22:42:52.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:42:52.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz 2024-02-22T22:42:52.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz 2024-02-22T22:42:52.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:42:52.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz 2024-02-22T22:42:52.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.cptryz ... 2024-02-22T22:42:52.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:42:52.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:42:52.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:42:52.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:42:52.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:42:52.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: cephadm 2024-02-22T22:42:51.291169+0000 mgr.smithi049.pzczis (mgr.14180) 999 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.qawqyf on smithi049 2024-02-22T22:42:52.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:52 smithi195 bash[18068]: cluster 2024-02-22T22:42:51.453716+0000 mgr.smithi049.pzczis (mgr.14180) 1000 : cluster [DBG] pgmap v687: 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-22T22:42:52.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: cephadm 2024-02-22T22:42:51.282916+0000 mgr.smithi049.pzczis (mgr.14180) 996 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz 2024-02-22T22:42:52.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:42:52.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz 2024-02-22T22:42:52.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz 2024-02-22T22:42:52.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:42:52.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz 2024-02-22T22:42:52.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.cptryz ... 2024-02-22T22:42:52.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:42:52.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:42:52.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:42:52.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:42:52.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:42:52.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:42:52.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:42:52.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:42:52.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:42:52.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:42:52.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz 2024-02-22T22:42:52.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:42:52.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz 2024-02-22T22:42:52.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz 2024-02-22T22:42:52.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:42:52.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz 2024-02-22T22:42:52.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.cptryz ... 2024-02-22T22:42:52.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:42:52.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:42:52.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:42:52.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:42:52.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:42:52.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: cephadm 2024-02-22T22:42:51.283576+0000 mgr.smithi049.pzczis (mgr.14180) 997 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.cptryz 2024-02-22T22:42:52.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: audit 2024-02-22T22:42:51.284374+0000 mon.smithi049 (mon.0) 933 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.cptryz"}]: dispatch 2024-02-22T22:42:52.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: cephadm 2024-02-22T22:42:51.286389+0000 mgr.smithi049.pzczis (mgr.14180) 998 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.cptryz on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz 2024-02-22T22:42:52.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:42:52.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz 2024-02-22T22:42:52.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz 2024-02-22T22:42:52.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:42:52.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz 2024-02-22T22:42:52.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.cptryz ... 2024-02-22T22:42:52.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:42:52.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:42:52.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:42:52.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:42:52.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:42:52.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: cephadm 2024-02-22T22:42:51.291169+0000 mgr.smithi049.pzczis (mgr.14180) 999 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.qawqyf on smithi049 2024-02-22T22:42:52.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:52 smithi049 bash[14150]: cluster 2024-02-22T22:42:51.453716+0000 mgr.smithi049.pzczis (mgr.14180) 1000 : cluster [DBG] pgmap v687: 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-22T22:42:53.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:53 smithi049 bash[14150]: audit 2024-02-22T22:42:52.665209+0000 mon.smithi049 (mon.0) 934 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:42:54.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:53 smithi195 bash[18068]: audit 2024-02-22T22:42:52.665209+0000 mon.smithi049 (mon.0) 934 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:42:54.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:54 smithi049 bash[14150]: cluster 2024-02-22T22:42:53.455087+0000 mgr.smithi049.pzczis (mgr.14180) 1001 : cluster [DBG] pgmap v688: 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-22T22:42:55.051 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:42:55.051 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:41:37.151213Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.uafoip on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-uafoip\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.uafoip\nDeploy daemon haproxy.nfs.foo.smithi195.uafoip ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.939919Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yiomjv on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yiomjv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yiomjv\nDeploy daemon haproxy.nfs.foo.smithi049.yiomjv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:41:40.944138Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.jddotu on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:42:51.286130Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.cptryz on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\nDeploy daemon haproxy.nfs.foo.smithi195.cptryz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:42:55.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:54 smithi195 bash[18068]: cluster 2024-02-22T22:42:53.455087+0000 mgr.smithi049.pzczis (mgr.14180) 1001 : cluster [DBG] pgmap v688: 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-22T22:42:55.840 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:42:55.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:55 smithi049 bash[14150]: audit 2024-02-22T22:42:55.053582+0000 mon.smithi049 (mon.0) 935 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.qawqyf"}]: dispatch 2024-02-22T22:42:56.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:55 smithi195 bash[18068]: audit 2024-02-22T22:42:55.053582+0000 mon.smithi049 (mon.0) 935 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.qawqyf"}]: dispatch 2024-02-22T22:42:56.841 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:42:56.853 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: audit 2024-02-22T22:42:55.042072+0000 mgr.smithi049.pzczis (mgr.14180) 1002 : audit [DBG] from='client.15272 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:42:56.853 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: cephadm 2024-02-22T22:42:55.048888+0000 mgr.smithi049.pzczis (mgr.14180) 1003 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf 2024-02-22T22:42:56.853 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:42:56.853 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf 2024-02-22T22:42:56.853 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf 2024-02-22T22:42:56.853 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:42:56.854 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf 2024-02-22T22:42:56.854 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.qawqyf ... 2024-02-22T22:42:56.854 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:42:56.854 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:42:56.854 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:42:56.854 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:42:56.854 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:42:56.854 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:42:56.854 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:42:56.854 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:42:56.854 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:42:56.854 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:42:56.854 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf 2024-02-22T22:42:56.854 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:42:56.854 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf 2024-02-22T22:42:56.854 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf 2024-02-22T22:42:56.854 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:42:56.855 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf 2024-02-22T22:42:56.855 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.qawqyf ... 2024-02-22T22:42:56.855 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:42:56.855 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:42:56.855 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:42:56.855 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:42:56.855 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:42:56.855 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: cephadm 2024-02-22T22:42:55.053097+0000 mgr.smithi049.pzczis (mgr.14180) 1004 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.qawqyf 2024-02-22T22:42:56.855 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: cephadm 2024-02-22T22:42:55.054611+0000 mgr.smithi049.pzczis (mgr.14180) 1005 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.qawqyf on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf 2024-02-22T22:42:56.855 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:42:56.855 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf 2024-02-22T22:42:56.856 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf 2024-02-22T22:42:56.856 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:42:56.856 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf 2024-02-22T22:42:56.856 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.qawqyf ... 2024-02-22T22:42:56.856 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:42:56.856 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:42:56.856 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:42:56.856 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:42:56.856 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:42:56.856 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: cephadm 2024-02-22T22:42:55.058337+0000 mgr.smithi049.pzczis (mgr.14180) 1006 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.uafecb on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:42:56.856 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: cephadm 2024-02-22T22:42:55.060428+0000 mgr.smithi049.pzczis (mgr.14180) 1007 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:42:56.856 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: cluster 2024-02-22T22:42:55.061511+0000 mgr.smithi049.pzczis (mgr.14180) 1008 : cluster [DBG] pgmap v689: 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-22T22:42:56.856 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:56 smithi049 bash[14150]: cluster 2024-02-22T22:42:55.675944+0000 mon.smithi049 (mon.0) 936 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:42:57.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: audit 2024-02-22T22:42:55.042072+0000 mgr.smithi049.pzczis (mgr.14180) 1002 : audit [DBG] from='client.15272 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:42:57.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: cephadm 2024-02-22T22:42:55.048888+0000 mgr.smithi049.pzczis (mgr.14180) 1003 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf 2024-02-22T22:42:57.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:42:57.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf 2024-02-22T22:42:57.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf 2024-02-22T22:42:57.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:42:57.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf 2024-02-22T22:42:57.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.qawqyf ... 2024-02-22T22:42:57.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:42:57.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:42:57.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:42:57.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:42:57.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:42:57.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:42:57.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:42:57.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:42:57.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:42:57.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:42:57.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf 2024-02-22T22:42:57.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:42:57.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf 2024-02-22T22:42:57.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf 2024-02-22T22:42:57.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:42:57.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf 2024-02-22T22:42:57.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.qawqyf ... 2024-02-22T22:42:57.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:42:57.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:42:57.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:42:57.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:42:57.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:42:57.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: cephadm 2024-02-22T22:42:55.053097+0000 mgr.smithi049.pzczis (mgr.14180) 1004 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.qawqyf 2024-02-22T22:42:57.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: cephadm 2024-02-22T22:42:55.054611+0000 mgr.smithi049.pzczis (mgr.14180) 1005 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.qawqyf on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf 2024-02-22T22:42:57.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:42:57.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf 2024-02-22T22:42:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf 2024-02-22T22:42:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:42:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf 2024-02-22T22:42:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.qawqyf ... 2024-02-22T22:42:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:42:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:42:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:42:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:42:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:42:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: cephadm 2024-02-22T22:42:55.058337+0000 mgr.smithi049.pzczis (mgr.14180) 1006 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.uafecb on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:42:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: cephadm 2024-02-22T22:42:55.060428+0000 mgr.smithi049.pzczis (mgr.14180) 1007 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:42:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: cluster 2024-02-22T22:42:55.061511+0000 mgr.smithi049.pzczis (mgr.14180) 1008 : cluster [DBG] pgmap v689: 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-22T22:42:57.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:56 smithi195 bash[18068]: cluster 2024-02-22T22:42:55.675944+0000 mon.smithi049 (mon.0) 936 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:42:58.027 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:57 smithi049 bash[14150]: audit 2024-02-22T22:42:56.761156+0000 mon.smithi049 (mon.0) 937 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:42:58.027 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:42:57 smithi049 bash[14150]: cluster 2024-02-22T22:42:57.063466+0000 mgr.smithi049.pzczis (mgr.14180) 1009 : cluster [DBG] pgmap v690: 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-22T22:42:58.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:57 smithi195 bash[18068]: audit 2024-02-22T22:42:56.761156+0000 mon.smithi049 (mon.0) 937 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:42:58.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:42:57 smithi195 bash[18068]: cluster 2024-02-22T22:42:57.063466+0000 mgr.smithi049.pzczis (mgr.14180) 1009 : cluster [DBG] pgmap v690: 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-22T22:43:00.117 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:43:00.117 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:42:51.286130Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.cptryz on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\nDeploy daemon haproxy.nfs.foo.smithi195.cptryz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:42:55.054442Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qawqyf on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf\nDeploy daemon haproxy.nfs.foo.smithi049.qawqyf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:42:55.058199Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.uafecb on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:42:55.060325Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:43:00.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:00 smithi049 bash[14150]: cluster 2024-02-22T22:42:59.065266+0000 mgr.smithi049.pzczis (mgr.14180) 1010 : cluster [DBG] pgmap v691: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 88 B/s rd, 0 op/s 2024-02-22T22:43:00.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:00 smithi195 bash[18068]: cluster 2024-02-22T22:42:59.065266+0000 mgr.smithi049.pzczis (mgr.14180) 1010 : cluster [DBG] pgmap v691: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 88 B/s rd, 0 op/s 2024-02-22T22:43:00.903 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:43:01.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:01 smithi049 bash[14150]: audit 2024-02-22T22:43:00.109579+0000 mgr.smithi049.pzczis (mgr.14180) 1011 : audit [DBG] from='client.15276 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:43:01.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:01 smithi195 bash[18068]: audit 2024-02-22T22:43:00.109579+0000 mgr.smithi049.pzczis (mgr.14180) 1011 : audit [DBG] from='client.15276 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:43:01.905 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:43:02.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:02 smithi049 bash[14150]: cluster 2024-02-22T22:43:01.067323+0000 mgr.smithi049.pzczis (mgr.14180) 1012 : cluster [DBG] pgmap v692: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 88 B/s rd, 0 op/s 2024-02-22T22:43:02.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:02 smithi195 bash[18068]: cluster 2024-02-22T22:43:01.067323+0000 mgr.smithi049.pzczis (mgr.14180) 1012 : cluster [DBG] pgmap v692: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 88 B/s rd, 0 op/s 2024-02-22T22:43:04.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:04 smithi049 bash[14150]: cluster 2024-02-22T22:43:03.068377+0000 mgr.smithi049.pzczis (mgr.14180) 1013 : cluster [DBG] pgmap v693: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2024-02-22T22:43:04.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:04 smithi195 bash[18068]: cluster 2024-02-22T22:43:03.068377+0000 mgr.smithi049.pzczis (mgr.14180) 1013 : cluster [DBG] pgmap v693: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2024-02-22T22:43:05.098 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:43:05.098 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:42:51.286130Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.cptryz on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\nDeploy daemon haproxy.nfs.foo.smithi195.cptryz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:42:55.054442Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qawqyf on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf\nDeploy daemon haproxy.nfs.foo.smithi049.qawqyf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:42:55.058199Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.uafecb on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:42:55.060325Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:43:05.826 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:43:06.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:06 smithi049 bash[14150]: cluster 2024-02-22T22:43:05.069374+0000 mgr.smithi049.pzczis (mgr.14180) 1014 : cluster [DBG] pgmap v694: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 88 B/s rd, 0 op/s 2024-02-22T22:43:06.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:06 smithi049 bash[14150]: audit 2024-02-22T22:43:05.088625+0000 mgr.smithi049.pzczis (mgr.14180) 1015 : audit [DBG] from='client.15280 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:43:06.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:06 smithi195 bash[18068]: cluster 2024-02-22T22:43:05.069374+0000 mgr.smithi049.pzczis (mgr.14180) 1014 : cluster [DBG] pgmap v694: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 88 B/s rd, 0 op/s 2024-02-22T22:43:06.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:06 smithi195 bash[18068]: audit 2024-02-22T22:43:05.088625+0000 mgr.smithi049.pzczis (mgr.14180) 1015 : audit [DBG] from='client.15280 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:43:06.827 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:43:09.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:08 smithi195 bash[18068]: cluster 2024-02-22T22:43:07.071385+0000 mgr.smithi049.pzczis (mgr.14180) 1016 : cluster [DBG] pgmap v695: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:43:09.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:08 smithi195 bash[18068]: audit 2024-02-22T22:43:07.667529+0000 mon.smithi049 (mon.0) 938 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:43:09.115 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:08 smithi049 bash[14150]: cluster 2024-02-22T22:43:07.071385+0000 mgr.smithi049.pzczis (mgr.14180) 1016 : cluster [DBG] pgmap v695: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:43:09.115 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:08 smithi049 bash[14150]: audit 2024-02-22T22:43:07.667529+0000 mon.smithi049 (mon.0) 938 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:43:10.239 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:43:10.239 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:42:51.286130Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.cptryz on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\nDeploy daemon haproxy.nfs.foo.smithi195.cptryz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:42:55.054442Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qawqyf on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf\nDeploy daemon haproxy.nfs.foo.smithi049.qawqyf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:42:55.058199Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.uafecb on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:42:55.060325Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:43:10.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:10 smithi049 bash[14150]: cluster 2024-02-22T22:43:09.073038+0000 mgr.smithi049.pzczis (mgr.14180) 1017 : cluster [DBG] pgmap v696: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:43:10.982 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:43:11.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:10 smithi195 bash[18068]: cluster 2024-02-22T22:43:09.073038+0000 mgr.smithi049.pzczis (mgr.14180) 1017 : cluster [DBG] pgmap v696: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:43:11.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:11 smithi049 bash[14150]: audit 2024-02-22T22:43:10.235163+0000 mgr.smithi049.pzczis (mgr.14180) 1018 : audit [DBG] from='client.15284 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:43:11.983 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:43:12.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:11 smithi195 bash[18068]: audit 2024-02-22T22:43:10.235163+0000 mgr.smithi049.pzczis (mgr.14180) 1018 : audit [DBG] from='client.15284 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:43:12.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:12 smithi049 bash[14150]: cluster 2024-02-22T22:43:11.074948+0000 mgr.smithi049.pzczis (mgr.14180) 1019 : cluster [DBG] pgmap v697: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:43:13.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:12 smithi195 bash[18068]: cluster 2024-02-22T22:43:11.074948+0000 mgr.smithi049.pzczis (mgr.14180) 1019 : cluster [DBG] pgmap v697: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:43:14.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:14 smithi049 bash[14150]: cluster 2024-02-22T22:43:13.076364+0000 mgr.smithi049.pzczis (mgr.14180) 1020 : cluster [DBG] pgmap v698: 225 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-22T22:43:14.965 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:43:14.965 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:42:51.286130Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.cptryz on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\nDeploy daemon haproxy.nfs.foo.smithi195.cptryz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:42:55.054442Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qawqyf on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf\nDeploy daemon haproxy.nfs.foo.smithi049.qawqyf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:42:55.058199Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.uafecb on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:42:55.060325Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:43:15.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:14 smithi195 bash[18068]: cluster 2024-02-22T22:43:13.076364+0000 mgr.smithi049.pzczis (mgr.14180) 1020 : cluster [DBG] pgmap v698: 225 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-22T22:43:15.762 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:43:16.763 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:43:16.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:16 smithi049 bash[14150]: audit 2024-02-22T22:43:14.957541+0000 mgr.smithi049.pzczis (mgr.14180) 1021 : audit [DBG] from='client.15288 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:43:16.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:16 smithi049 bash[14150]: cluster 2024-02-22T22:43:15.077407+0000 mgr.smithi049.pzczis (mgr.14180) 1022 : cluster [DBG] pgmap v699: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:43:17.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:16 smithi195 bash[18068]: audit 2024-02-22T22:43:14.957541+0000 mgr.smithi049.pzczis (mgr.14180) 1021 : audit [DBG] from='client.15288 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:43:17.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:16 smithi195 bash[18068]: cluster 2024-02-22T22:43:15.077407+0000 mgr.smithi049.pzczis (mgr.14180) 1022 : cluster [DBG] pgmap v699: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:43:19.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:18 smithi195 bash[18068]: cluster 2024-02-22T22:43:17.079150+0000 mgr.smithi049.pzczis (mgr.14180) 1023 : cluster [DBG] pgmap v700: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:43:19.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:18 smithi049 bash[14150]: cluster 2024-02-22T22:43:17.079150+0000 mgr.smithi049.pzczis (mgr.14180) 1023 : cluster [DBG] pgmap v700: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:43:20.093 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:43:20.094 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:42:51.286130Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.cptryz on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\nDeploy daemon haproxy.nfs.foo.smithi195.cptryz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:42:55.054442Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qawqyf on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf\nDeploy daemon haproxy.nfs.foo.smithi049.qawqyf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:42:55.058199Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.uafecb on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:42:55.060325Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:43:20.865 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:43:21.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:20 smithi195 bash[18068]: cluster 2024-02-22T22:43:19.080831+0000 mgr.smithi049.pzczis (mgr.14180) 1024 : cluster [DBG] pgmap v701: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:43:21.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:20 smithi049 bash[14150]: cluster 2024-02-22T22:43:19.080831+0000 mgr.smithi049.pzczis (mgr.14180) 1024 : cluster [DBG] pgmap v701: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:43:21.866 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:43:22.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:21 smithi195 bash[18068]: audit 2024-02-22T22:43:20.085884+0000 mgr.smithi049.pzczis (mgr.14180) 1025 : audit [DBG] from='client.15292 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:43:22.072 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:21 smithi049 bash[14150]: audit 2024-02-22T22:43:20.085884+0000 mgr.smithi049.pzczis (mgr.14180) 1025 : audit [DBG] from='client.15292 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:43:23.029 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:22 smithi049 bash[14150]: cluster 2024-02-22T22:43:21.082799+0000 mgr.smithi049.pzczis (mgr.14180) 1026 : 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-22T22:43:23.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:22 smithi195 bash[18068]: cluster 2024-02-22T22:43:21.082799+0000 mgr.smithi049.pzczis (mgr.14180) 1026 : 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-22T22:43:24.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:24 smithi049 bash[14150]: cluster 2024-02-22T22:43:23.084361+0000 mgr.smithi049.pzczis (mgr.14180) 1027 : 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-22T22:43:24.962 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:43:24.962 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:42:51.286130Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.cptryz on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\nDeploy daemon haproxy.nfs.foo.smithi195.cptryz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:42:55.054442Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qawqyf on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf\nDeploy daemon haproxy.nfs.foo.smithi049.qawqyf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:42:55.058199Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.uafecb on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:42:55.060325Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:43:25.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:24 smithi195 bash[18068]: cluster 2024-02-22T22:43:23.084361+0000 mgr.smithi049.pzczis (mgr.14180) 1027 : 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-22T22:43:25.741 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:43:26.742 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:43:26.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:26 smithi049 bash[14150]: audit 2024-02-22T22:43:24.953164+0000 mgr.smithi049.pzczis (mgr.14180) 1028 : audit [DBG] from='client.15296 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:43:26.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:26 smithi049 bash[14150]: cluster 2024-02-22T22:43:25.085399+0000 mgr.smithi049.pzczis (mgr.14180) 1029 : 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-22T22:43:27.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:26 smithi195 bash[18068]: audit 2024-02-22T22:43:24.953164+0000 mgr.smithi049.pzczis (mgr.14180) 1028 : audit [DBG] from='client.15296 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:43:27.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:26 smithi195 bash[18068]: cluster 2024-02-22T22:43:25.085399+0000 mgr.smithi049.pzczis (mgr.14180) 1029 : 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-22T22:43:29.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:28 smithi195 bash[18068]: cluster 2024-02-22T22:43:27.087415+0000 mgr.smithi049.pzczis (mgr.14180) 1030 : 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-22T22:43:29.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:28 smithi049 bash[14150]: cluster 2024-02-22T22:43:27.087415+0000 mgr.smithi049.pzczis (mgr.14180) 1030 : 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-22T22:43:30.075 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:43:30.075 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:42:51.286130Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.cptryz on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\nDeploy daemon haproxy.nfs.foo.smithi195.cptryz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:42:55.054442Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qawqyf on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf\nDeploy daemon haproxy.nfs.foo.smithi049.qawqyf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:42:55.058199Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.uafecb on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:42:55.060325Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:43:30.860 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:43:31.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:30 smithi195 bash[18068]: cluster 2024-02-22T22:43:29.088610+0000 mgr.smithi049.pzczis (mgr.14180) 1031 : 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-22T22:43:31.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:30 smithi049 bash[14150]: cluster 2024-02-22T22:43:29.088610+0000 mgr.smithi049.pzczis (mgr.14180) 1031 : 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-22T22:43:31.861 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:43:32.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:31 smithi195 bash[18068]: audit 2024-02-22T22:43:30.066446+0000 mgr.smithi049.pzczis (mgr.14180) 1032 : audit [DBG] from='client.15300 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:43:32.065 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:31 smithi049 bash[14150]: audit 2024-02-22T22:43:30.066446+0000 mgr.smithi049.pzczis (mgr.14180) 1032 : audit [DBG] from='client.15300 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:43:33.015 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:32 smithi049 bash[14150]: cluster 2024-02-22T22:43:31.090469+0000 mgr.smithi049.pzczis (mgr.14180) 1033 : 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-22T22:43:33.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:32 smithi195 bash[18068]: cluster 2024-02-22T22:43:31.090469+0000 mgr.smithi049.pzczis (mgr.14180) 1033 : 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-22T22:43:34.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:34 smithi049 bash[14150]: cluster 2024-02-22T22:43:33.091955+0000 mgr.smithi049.pzczis (mgr.14180) 1034 : 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-22T22:43:35.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:34 smithi195 bash[18068]: cluster 2024-02-22T22:43:33.091955+0000 mgr.smithi049.pzczis (mgr.14180) 1034 : 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-22T22:43:35.092 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:43:35.092 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:42:51.286130Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.cptryz on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\nDeploy daemon haproxy.nfs.foo.smithi195.cptryz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:42:55.054442Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qawqyf on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf\nDeploy daemon haproxy.nfs.foo.smithi049.qawqyf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:42:55.058199Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.uafecb on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:42:55.060325Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:43:35.850 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:43:36.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:35 smithi049 bash[14150]: audit 2024-02-22T22:43:35.083841+0000 mgr.smithi049.pzczis (mgr.14180) 1035 : audit [DBG] from='client.15304 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:43:36.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:35 smithi049 bash[14150]: cluster 2024-02-22T22:43:35.092903+0000 mgr.smithi049.pzczis (mgr.14180) 1036 : 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-22T22:43:36.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:35 smithi195 bash[18068]: audit 2024-02-22T22:43:35.083841+0000 mgr.smithi049.pzczis (mgr.14180) 1035 : audit [DBG] from='client.15304 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:43:36.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:35 smithi195 bash[18068]: cluster 2024-02-22T22:43:35.092903+0000 mgr.smithi049.pzczis (mgr.14180) 1036 : 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-22T22:43:36.851 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:43:38.303 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:38 smithi049 bash[14150]: cluster 2024-02-22T22:43:37.094997+0000 mgr.smithi049.pzczis (mgr.14180) 1037 : 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-22T22:43:38.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:38 smithi195 bash[18068]: cluster 2024-02-22T22:43:37.094997+0000 mgr.smithi049.pzczis (mgr.14180) 1037 : 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-22T22:43:40.023 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:43:40.023 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:42:51.286130Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.cptryz on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\nDeploy daemon haproxy.nfs.foo.smithi195.cptryz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:42:55.054442Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qawqyf on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf\nDeploy daemon haproxy.nfs.foo.smithi049.qawqyf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:42:55.058199Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.uafecb on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:42:55.060325Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:43:40.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:40 smithi049 bash[14150]: cluster 2024-02-22T22:43:39.096661+0000 mgr.smithi049.pzczis (mgr.14180) 1038 : 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-22T22:43:40.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:40 smithi195 bash[18068]: cluster 2024-02-22T22:43:39.096661+0000 mgr.smithi049.pzczis (mgr.14180) 1038 : 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-22T22:43:40.815 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:43:41.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:41 smithi049 bash[14150]: audit 2024-02-22T22:43:40.015832+0000 mgr.smithi049.pzczis (mgr.14180) 1039 : audit [DBG] from='client.15308 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:43:41.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:41 smithi195 bash[18068]: audit 2024-02-22T22:43:40.015832+0000 mgr.smithi049.pzczis (mgr.14180) 1039 : audit [DBG] from='client.15308 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:43:41.816 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:43:42.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:42 smithi049 bash[14150]: cluster 2024-02-22T22:43:41.098583+0000 mgr.smithi049.pzczis (mgr.14180) 1040 : 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-22T22:43:42.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:42 smithi195 bash[18068]: cluster 2024-02-22T22:43:41.098583+0000 mgr.smithi049.pzczis (mgr.14180) 1040 : 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-22T22:43:44.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:44 smithi049 bash[14150]: cluster 2024-02-22T22:43:43.099562+0000 mgr.smithi049.pzczis (mgr.14180) 1041 : 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-22T22:43:44.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:44 smithi195 bash[18068]: cluster 2024-02-22T22:43:43.099562+0000 mgr.smithi049.pzczis (mgr.14180) 1041 : 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-22T22:43:45.023 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:43:45.024 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:42:51.286130Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.cptryz on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\nDeploy daemon haproxy.nfs.foo.smithi195.cptryz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:42:55.054442Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qawqyf on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf\nDeploy daemon haproxy.nfs.foo.smithi049.qawqyf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:42:55.058199Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.uafecb on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:42:55.060325Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:43:45.808 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:43:46.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:46 smithi049 bash[14150]: audit 2024-02-22T22:43:45.015203+0000 mgr.smithi049.pzczis (mgr.14180) 1042 : audit [DBG] from='client.15312 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:43:46.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:46 smithi049 bash[14150]: cluster 2024-02-22T22:43:45.100311+0000 mgr.smithi049.pzczis (mgr.14180) 1043 : 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-22T22:43:46.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:46 smithi195 bash[18068]: audit 2024-02-22T22:43:45.015203+0000 mgr.smithi049.pzczis (mgr.14180) 1042 : audit [DBG] from='client.15312 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:43:46.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:46 smithi195 bash[18068]: cluster 2024-02-22T22:43:45.100311+0000 mgr.smithi049.pzczis (mgr.14180) 1043 : 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-22T22:43:46.809 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:43:48.293 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:48 smithi049 bash[14150]: cluster 2024-02-22T22:43:47.102224+0000 mgr.smithi049.pzczis (mgr.14180) 1044 : 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-22T22:43:48.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:48 smithi195 bash[18068]: cluster 2024-02-22T22:43:47.102224+0000 mgr.smithi049.pzczis (mgr.14180) 1044 : 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-22T22:43:50.065 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:43:50.066 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:42:51.286130Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.cptryz on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\nDeploy daemon haproxy.nfs.foo.smithi195.cptryz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:42:55.054442Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qawqyf on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf\nDeploy daemon haproxy.nfs.foo.smithi049.qawqyf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:42:55.058199Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.uafecb on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:42:55.060325Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:43:50.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:50 smithi049 bash[14150]: cluster 2024-02-22T22:43:49.103806+0000 mgr.smithi049.pzczis (mgr.14180) 1045 : 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-22T22:43:50.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:50 smithi195 bash[18068]: cluster 2024-02-22T22:43:49.103806+0000 mgr.smithi049.pzczis (mgr.14180) 1045 : 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-22T22:43:50.840 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:43:51.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:51 smithi195 bash[18068]: audit 2024-02-22T22:43:50.057194+0000 mgr.smithi049.pzczis (mgr.14180) 1046 : audit [DBG] from='client.15316 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:43:51.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:51 smithi049 bash[14150]: audit 2024-02-22T22:43:50.057194+0000 mgr.smithi049.pzczis (mgr.14180) 1046 : audit [DBG] from='client.15316 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:43:51.842 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:43:52.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:52 smithi049 bash[14150]: cluster 2024-02-22T22:43:51.105797+0000 mgr.smithi049.pzczis (mgr.14180) 1047 : 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-22T22:43:52.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:52 smithi195 bash[18068]: cluster 2024-02-22T22:43:51.105797+0000 mgr.smithi049.pzczis (mgr.14180) 1047 : 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-22T22:43:54.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:54 smithi195 bash[18068]: cluster 2024-02-22T22:43:53.107289+0000 mgr.smithi049.pzczis (mgr.14180) 1048 : 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-22T22:43:54.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:54 smithi049 bash[14150]: cluster 2024-02-22T22:43:53.107289+0000 mgr.smithi049.pzczis (mgr.14180) 1048 : 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-22T22:43:55.098 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:43:55.099 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:41:40.945908Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.woctzm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:42:51.286130Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.cptryz on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\nDeploy daemon haproxy.nfs.foo.smithi195.cptryz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:42:55.054442Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qawqyf on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf\nDeploy daemon haproxy.nfs.foo.smithi049.qawqyf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:42:55.058199Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.uafecb on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:42:55.060325Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:43:55.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:55 smithi049 bash[14150]: audit 2024-02-22T22:43:55.064261+0000 mon.smithi049 (mon.0) 939 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:43:55.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:55 smithi195 bash[18068]: audit 2024-02-22T22:43:55.064261+0000 mon.smithi049 (mon.0) 939 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:43:55.904 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:43:56.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:56 smithi049 bash[14150]: audit 2024-02-22T22:43:55.094677+0000 mgr.smithi049.pzczis (mgr.14180) 1049 : audit [DBG] from='client.15320 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:43:56.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:56 smithi049 bash[14150]: cluster 2024-02-22T22:43:55.108085+0000 mgr.smithi049.pzczis (mgr.14180) 1050 : 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-22T22:43:56.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:56 smithi049 bash[14150]: audit 2024-02-22T22:43:55.338530+0000 mon.smithi049 (mon.0) 940 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:43:56.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:56 smithi049 bash[14150]: audit 2024-02-22T22:43:55.635253+0000 mon.smithi049 (mon.0) 941 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:43:56.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:56 smithi049 bash[14150]: audit 2024-02-22T22:43:55.636586+0000 mon.smithi049 (mon.0) 942 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:43:56.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:56 smithi049 bash[14150]: audit 2024-02-22T22:43:55.644373+0000 mon.smithi049 (mon.0) 943 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:43:56.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:56 smithi049 bash[14150]: cluster 2024-02-22T22:43:55.645862+0000 mgr.smithi049.pzczis (mgr.14180) 1051 : cluster [DBG] pgmap v720: 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-22T22:43:56.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:56 smithi049 bash[14150]: audit 2024-02-22T22:43:55.652204+0000 mon.smithi049 (mon.0) 944 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:43:56.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:56 smithi049 bash[14150]: audit 2024-02-22T22:43:55.665506+0000 mon.smithi049 (mon.0) 945 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:43:56.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:56 smithi049 bash[14150]: cephadm 2024-02-22T22:43:55.669766+0000 mgr.smithi049.pzczis (mgr.14180) 1052 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.jxhnja on smithi195 2024-02-22T22:43:56.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:56 smithi195 bash[18068]: audit 2024-02-22T22:43:55.094677+0000 mgr.smithi049.pzczis (mgr.14180) 1049 : audit [DBG] from='client.15320 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:43:56.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:56 smithi195 bash[18068]: cluster 2024-02-22T22:43:55.108085+0000 mgr.smithi049.pzczis (mgr.14180) 1050 : 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-22T22:43:56.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:56 smithi195 bash[18068]: audit 2024-02-22T22:43:55.338530+0000 mon.smithi049 (mon.0) 940 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:43:56.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:56 smithi195 bash[18068]: audit 2024-02-22T22:43:55.635253+0000 mon.smithi049 (mon.0) 941 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:43:56.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:56 smithi195 bash[18068]: audit 2024-02-22T22:43:55.636586+0000 mon.smithi049 (mon.0) 942 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:43:56.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:56 smithi195 bash[18068]: audit 2024-02-22T22:43:55.644373+0000 mon.smithi049 (mon.0) 943 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:43:56.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:56 smithi195 bash[18068]: cluster 2024-02-22T22:43:55.645862+0000 mgr.smithi049.pzczis (mgr.14180) 1051 : cluster [DBG] pgmap v720: 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-22T22:43:56.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:56 smithi195 bash[18068]: audit 2024-02-22T22:43:55.652204+0000 mon.smithi049 (mon.0) 944 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:43:56.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:56 smithi195 bash[18068]: audit 2024-02-22T22:43:55.665506+0000 mon.smithi049 (mon.0) 945 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:43:56.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:56 smithi195 bash[18068]: cephadm 2024-02-22T22:43:55.669766+0000 mgr.smithi049.pzczis (mgr.14180) 1052 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.jxhnja on smithi195 2024-02-22T22:43:56.904 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:43:57.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:57 smithi049 bash[14150]: cluster 2024-02-22T22:43:56.641387+0000 mon.smithi049 (mon.0) 946 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:43:57.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:57 smithi049 bash[14150]: cluster 2024-02-22T22:43:56.641446+0000 mon.smithi049 (mon.0) 947 : cluster [INF] Cluster is now healthy 2024-02-22T22:43:57.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:57 smithi195 bash[18068]: cluster 2024-02-22T22:43:56.641387+0000 mon.smithi049 (mon.0) 946 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:43:57.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:57 smithi195 bash[18068]: cluster 2024-02-22T22:43:56.641446+0000 mon.smithi049 (mon.0) 947 : cluster [INF] Cluster is now healthy 2024-02-22T22:43:58.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:58 smithi195 bash[18068]: cluster 2024-02-22T22:43:57.647365+0000 mgr.smithi049.pzczis (mgr.14180) 1053 : cluster [DBG] pgmap v721: 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-22T22:43:58.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:58 smithi049 bash[14150]: cluster 2024-02-22T22:43:57.647365+0000 mgr.smithi049.pzczis (mgr.14180) 1053 : cluster [DBG] pgmap v721: 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-22T22:43:59.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:43:59 smithi195 bash[18068]: audit 2024-02-22T22:43:59.583363+0000 mon.smithi049 (mon.0) 948 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.jxhnja"}]: dispatch 2024-02-22T22:43:59.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:43:59 smithi049 bash[14150]: audit 2024-02-22T22:43:59.583363+0000 mon.smithi049 (mon.0) 948 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.jxhnja"}]: dispatch 2024-02-22T22:44:00.198 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:44:00.198 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:42:51.286130Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.cptryz on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-cptryz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.cptryz\nDeploy daemon haproxy.nfs.foo.smithi195.cptryz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:42:55.054442Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qawqyf on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qawqyf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qawqyf\nDeploy daemon haproxy.nfs.foo.smithi049.qawqyf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:42:55.058199Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.uafecb on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:42:55.060325Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:43:59.584602Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.jxhnja on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\nDeploy daemon haproxy.nfs.foo.smithi195.jxhnja ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:44:00.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: cephadm 2024-02-22T22:43:59.582134+0000 mgr.smithi049.pzczis (mgr.14180) 1054 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja 2024-02-22T22:44:00.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:44:00.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja 2024-02-22T22:44:00.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja 2024-02-22T22:44:00.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:44:00.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja 2024-02-22T22:44:00.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.jxhnja ... 2024-02-22T22:44:00.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:44:00.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:44:00.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:44:00.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:44:00.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:44:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:44:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:44:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:44:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:44:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:44:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja 2024-02-22T22:44:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:44:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja 2024-02-22T22:44:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja 2024-02-22T22:44:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:44:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja 2024-02-22T22:44:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.jxhnja ... 2024-02-22T22:44:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:44:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:44:00.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:44:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:44:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:44:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: cephadm 2024-02-22T22:43:59.582638+0000 mgr.smithi049.pzczis (mgr.14180) 1055 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.jxhnja 2024-02-22T22:44:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: cephadm 2024-02-22T22:43:59.584772+0000 mgr.smithi049.pzczis (mgr.14180) 1056 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.jxhnja on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja 2024-02-22T22:44:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:44:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja 2024-02-22T22:44:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja 2024-02-22T22:44:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:44:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja 2024-02-22T22:44:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.jxhnja ... 2024-02-22T22:44:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:44:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:44:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:44:00.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:44:00.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:44:00.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: cephadm 2024-02-22T22:43:59.589744+0000 mgr.smithi049.pzczis (mgr.14180) 1057 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.qklhgu on smithi049 2024-02-22T22:44:00.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:00 smithi049 bash[14150]: cluster 2024-02-22T22:43:59.647947+0000 mgr.smithi049.pzczis (mgr.14180) 1058 : cluster [DBG] pgmap v722: 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-22T22:44:00.980 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:44:01.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: cephadm 2024-02-22T22:43:59.582134+0000 mgr.smithi049.pzczis (mgr.14180) 1054 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja 2024-02-22T22:44:01.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:44:01.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja 2024-02-22T22:44:01.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja 2024-02-22T22:44:01.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:44:01.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja 2024-02-22T22:44:01.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.jxhnja ... 2024-02-22T22:44:01.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:44:01.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:44:01.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:44:01.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:44:01.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:44:01.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:44:01.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:44:01.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:44:01.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:44:01.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:44:01.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja 2024-02-22T22:44:01.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:44:01.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja 2024-02-22T22:44:01.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja 2024-02-22T22:44:01.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:44:01.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja 2024-02-22T22:44:01.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.jxhnja ... 2024-02-22T22:44:01.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:44:01.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:44:01.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:44:01.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:44:01.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:44:01.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: cephadm 2024-02-22T22:43:59.582638+0000 mgr.smithi049.pzczis (mgr.14180) 1055 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.jxhnja 2024-02-22T22:44:01.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: cephadm 2024-02-22T22:43:59.584772+0000 mgr.smithi049.pzczis (mgr.14180) 1056 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.jxhnja on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja 2024-02-22T22:44:01.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:44:01.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja 2024-02-22T22:44:01.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja 2024-02-22T22:44:01.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:44:01.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja 2024-02-22T22:44:01.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.jxhnja ... 2024-02-22T22:44:01.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:44:01.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:44:01.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:44:01.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:44:01.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:44:01.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: cephadm 2024-02-22T22:43:59.589744+0000 mgr.smithi049.pzczis (mgr.14180) 1057 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.qklhgu on smithi049 2024-02-22T22:44:01.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:00 smithi195 bash[18068]: cluster 2024-02-22T22:43:59.647947+0000 mgr.smithi049.pzczis (mgr.14180) 1058 : cluster [DBG] pgmap v722: 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-22T22:44:01.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:01 smithi049 bash[14150]: audit 2024-02-22T22:44:00.188491+0000 mgr.smithi049.pzczis (mgr.14180) 1059 : audit [DBG] from='client.15324 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:44:01.981 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:44:02.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:01 smithi195 bash[18068]: audit 2024-02-22T22:44:00.188491+0000 mgr.smithi049.pzczis (mgr.14180) 1059 : audit [DBG] from='client.15324 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:44:02.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:02 smithi049 bash[14150]: cluster 2024-02-22T22:44:01.649693+0000 mgr.smithi049.pzczis (mgr.14180) 1060 : cluster [DBG] pgmap v723: 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-22T22:44:03.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:02 smithi195 bash[18068]: cluster 2024-02-22T22:44:01.649693+0000 mgr.smithi049.pzczis (mgr.14180) 1060 : cluster [DBG] pgmap v723: 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-22T22:44:03.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:03 smithi049 bash[14150]: audit 2024-02-22T22:44:03.438989+0000 mon.smithi049 (mon.0) 949 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.qklhgu"}]: dispatch 2024-02-22T22:44:04.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:03 smithi195 bash[18068]: audit 2024-02-22T22:44:03.438989+0000 mon.smithi049 (mon.0) 949 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.qklhgu"}]: dispatch 2024-02-22T22:44:04.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: cephadm 2024-02-22T22:44:03.438260+0000 mgr.smithi049.pzczis (mgr.14180) 1061 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu 2024-02-22T22:44:04.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:44:04.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu 2024-02-22T22:44:04.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu 2024-02-22T22:44:04.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:44:04.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu 2024-02-22T22:44:04.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.qklhgu ... 2024-02-22T22:44:04.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:44:04.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:44:04.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:44:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:44:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:44:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:44:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:44:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:44:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:44:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:44:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu 2024-02-22T22:44:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:44:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu 2024-02-22T22:44:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu 2024-02-22T22:44:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:44:04.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu 2024-02-22T22:44:04.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.qklhgu ... 2024-02-22T22:44:04.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:44:04.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:44:04.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:44:04.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:44:04.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:44:04.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: cephadm 2024-02-22T22:44:03.438523+0000 mgr.smithi049.pzczis (mgr.14180) 1062 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.qklhgu 2024-02-22T22:44:04.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: cephadm 2024-02-22T22:44:03.439922+0000 mgr.smithi049.pzczis (mgr.14180) 1063 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.qklhgu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu 2024-02-22T22:44:04.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:44:04.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu 2024-02-22T22:44:04.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu 2024-02-22T22:44:04.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:44:04.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu 2024-02-22T22:44:04.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.qklhgu ... 2024-02-22T22:44:04.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:44:04.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:44:04.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:44:04.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:44:04.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:44:04.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: cephadm 2024-02-22T22:44:03.441800+0000 mgr.smithi049.pzczis (mgr.14180) 1064 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.ivxjfx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:44:04.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: cephadm 2024-02-22T22:44:03.443420+0000 mgr.smithi049.pzczis (mgr.14180) 1065 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:44:04.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: cluster 2024-02-22T22:44:03.444563+0000 mgr.smithi049.pzczis (mgr.14180) 1066 : cluster [DBG] pgmap v724: 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-22T22:44:04.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:04 smithi049 bash[14150]: cluster 2024-02-22T22:44:03.658391+0000 mon.smithi049 (mon.0) 950 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:44:05.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: cephadm 2024-02-22T22:44:03.438260+0000 mgr.smithi049.pzczis (mgr.14180) 1061 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu 2024-02-22T22:44:05.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:44:05.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu 2024-02-22T22:44:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu 2024-02-22T22:44:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:44:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu 2024-02-22T22:44:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.qklhgu ... 2024-02-22T22:44:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:44:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:44:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:44:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:44:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:44:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:44:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:44:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:44:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:44:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:44:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu 2024-02-22T22:44:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:44:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu 2024-02-22T22:44:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu 2024-02-22T22:44:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:44:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu 2024-02-22T22:44:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.qklhgu ... 2024-02-22T22:44:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:44:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:44:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:44:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:44:05.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:44:05.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: cephadm 2024-02-22T22:44:03.438523+0000 mgr.smithi049.pzczis (mgr.14180) 1062 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.qklhgu 2024-02-22T22:44:05.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: cephadm 2024-02-22T22:44:03.439922+0000 mgr.smithi049.pzczis (mgr.14180) 1063 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.qklhgu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu 2024-02-22T22:44:05.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:44:05.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu 2024-02-22T22:44:05.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu 2024-02-22T22:44:05.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:44:05.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu 2024-02-22T22:44:05.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.qklhgu ... 2024-02-22T22:44:05.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:44:05.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:44:05.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:44:05.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:44:05.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:44:05.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: cephadm 2024-02-22T22:44:03.441800+0000 mgr.smithi049.pzczis (mgr.14180) 1064 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.ivxjfx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:44:05.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: cephadm 2024-02-22T22:44:03.443420+0000 mgr.smithi049.pzczis (mgr.14180) 1065 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:44:05.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: cluster 2024-02-22T22:44:03.444563+0000 mgr.smithi049.pzczis (mgr.14180) 1066 : cluster [DBG] pgmap v724: 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-22T22:44:05.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:04 smithi195 bash[18068]: cluster 2024-02-22T22:44:03.658391+0000 mon.smithi049 (mon.0) 950 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:44:05.427 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:44:05.427 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:42:55.060325Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:43:59.584602Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.jxhnja on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\nDeploy daemon haproxy.nfs.foo.smithi195.jxhnja ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.439821Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qklhgu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\nDeploy daemon haproxy.nfs.foo.smithi049.qklhgu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.441679Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ivxjfx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:44:06.241 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:44:06.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:06 smithi049 bash[14150]: audit 2024-02-22T22:44:05.418702+0000 mgr.smithi049.pzczis (mgr.14180) 1067 : audit [DBG] from='client.15328 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:44:06.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:06 smithi049 bash[14150]: cluster 2024-02-22T22:44:05.446004+0000 mgr.smithi049.pzczis (mgr.14180) 1068 : cluster [DBG] pgmap v725: 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-22T22:44:07.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:06 smithi195 bash[18068]: audit 2024-02-22T22:44:05.418702+0000 mgr.smithi049.pzczis (mgr.14180) 1067 : audit [DBG] from='client.15328 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:44:07.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:06 smithi195 bash[18068]: cluster 2024-02-22T22:44:05.446004+0000 mgr.smithi049.pzczis (mgr.14180) 1068 : cluster [DBG] pgmap v725: 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-22T22:44:07.242 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:44:08.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:07 smithi049 bash[14150]: audit 2024-02-22T22:44:06.823904+0000 mon.smithi049 (mon.0) 951 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:44:08.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:07 smithi049 bash[14150]: cluster 2024-02-22T22:44:07.447721+0000 mgr.smithi049.pzczis (mgr.14180) 1069 : cluster [DBG] pgmap v726: 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-22T22:44:08.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:07 smithi195 bash[18068]: audit 2024-02-22T22:44:06.823904+0000 mon.smithi049 (mon.0) 951 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:44:08.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:07 smithi195 bash[18068]: cluster 2024-02-22T22:44:07.447721+0000 mgr.smithi049.pzczis (mgr.14180) 1069 : cluster [DBG] pgmap v726: 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-22T22:44:10.278 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:44:10.278 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:42:55.060325Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:43:59.584602Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.jxhnja on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\nDeploy daemon haproxy.nfs.foo.smithi195.jxhnja ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.439821Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qklhgu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\nDeploy daemon haproxy.nfs.foo.smithi049.qklhgu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.441679Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ivxjfx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:44:10.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:10 smithi049 bash[14150]: cluster 2024-02-22T22:44:09.448701+0000 mgr.smithi049.pzczis (mgr.14180) 1070 : cluster [DBG] pgmap v727: 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-22T22:44:10.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:10 smithi195 bash[18068]: cluster 2024-02-22T22:44:09.448701+0000 mgr.smithi049.pzczis (mgr.14180) 1070 : cluster [DBG] pgmap v727: 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-22T22:44:11.112 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:44:11.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:11 smithi195 bash[18068]: audit 2024-02-22T22:44:10.270144+0000 mgr.smithi049.pzczis (mgr.14180) 1071 : audit [DBG] from='client.15332 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:44:11.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:11 smithi049 bash[14150]: audit 2024-02-22T22:44:10.270144+0000 mgr.smithi049.pzczis (mgr.14180) 1071 : audit [DBG] from='client.15332 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:44:12.113 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:44:12.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:12 smithi049 bash[14150]: cluster 2024-02-22T22:44:11.450645+0000 mgr.smithi049.pzczis (mgr.14180) 1072 : cluster [DBG] pgmap v728: 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-22T22:44:12.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:12 smithi195 bash[18068]: cluster 2024-02-22T22:44:11.450645+0000 mgr.smithi049.pzczis (mgr.14180) 1072 : cluster [DBG] pgmap v728: 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-22T22:44:14.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:14 smithi195 bash[18068]: cluster 2024-02-22T22:44:13.452131+0000 mgr.smithi049.pzczis (mgr.14180) 1073 : cluster [DBG] pgmap v729: 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-22T22:44:14.843 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:14 smithi049 bash[14150]: cluster 2024-02-22T22:44:13.452131+0000 mgr.smithi049.pzczis (mgr.14180) 1073 : cluster [DBG] pgmap v729: 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-22T22:44:15.258 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:44:15.258 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:42:55.060325Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:43:59.584602Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.jxhnja on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\nDeploy daemon haproxy.nfs.foo.smithi195.jxhnja ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.439821Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qklhgu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\nDeploy daemon haproxy.nfs.foo.smithi049.qklhgu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.441679Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ivxjfx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:44:15.994 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:44:16.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:16 smithi195 bash[18068]: audit 2024-02-22T22:44:15.250101+0000 mgr.smithi049.pzczis (mgr.14180) 1074 : audit [DBG] from='client.15336 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:44:16.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:16 smithi195 bash[18068]: cluster 2024-02-22T22:44:15.453391+0000 mgr.smithi049.pzczis (mgr.14180) 1075 : cluster [DBG] pgmap v730: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:44:16.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:16 smithi049 bash[14150]: audit 2024-02-22T22:44:15.250101+0000 mgr.smithi049.pzczis (mgr.14180) 1074 : audit [DBG] from='client.15336 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:44:16.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:16 smithi049 bash[14150]: cluster 2024-02-22T22:44:15.453391+0000 mgr.smithi049.pzczis (mgr.14180) 1075 : cluster [DBG] pgmap v730: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:44:16.995 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:44:18.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:18 smithi195 bash[18068]: cluster 2024-02-22T22:44:17.455254+0000 mgr.smithi049.pzczis (mgr.14180) 1076 : cluster [DBG] pgmap v731: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:44:18.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:18 smithi049 bash[14150]: cluster 2024-02-22T22:44:17.455254+0000 mgr.smithi049.pzczis (mgr.14180) 1076 : cluster [DBG] pgmap v731: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:44:20.316 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:44:20.316 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:42:55.060325Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:43:59.584602Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.jxhnja on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\nDeploy daemon haproxy.nfs.foo.smithi195.jxhnja ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.439821Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qklhgu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\nDeploy daemon haproxy.nfs.foo.smithi049.qklhgu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.441679Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ivxjfx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:44:20.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:20 smithi049 bash[14150]: cluster 2024-02-22T22:44:19.455931+0000 mgr.smithi049.pzczis (mgr.14180) 1077 : cluster [DBG] pgmap v732: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:44:20.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:20 smithi195 bash[18068]: cluster 2024-02-22T22:44:19.455931+0000 mgr.smithi049.pzczis (mgr.14180) 1077 : cluster [DBG] pgmap v732: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:44:21.023 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:44:21.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:21 smithi195 bash[18068]: audit 2024-02-22T22:44:20.308397+0000 mgr.smithi049.pzczis (mgr.14180) 1078 : audit [DBG] from='client.15340 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:44:21.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:21 smithi049 bash[14150]: audit 2024-02-22T22:44:20.308397+0000 mgr.smithi049.pzczis (mgr.14180) 1078 : audit [DBG] from='client.15340 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:44:22.025 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:44:22.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:22 smithi049 bash[14150]: cluster 2024-02-22T22:44:21.457848+0000 mgr.smithi049.pzczis (mgr.14180) 1079 : cluster [DBG] pgmap v733: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:44:23.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:22 smithi195 bash[18068]: cluster 2024-02-22T22:44:21.457848+0000 mgr.smithi049.pzczis (mgr.14180) 1079 : cluster [DBG] pgmap v733: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:44:24.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:24 smithi049 bash[14150]: cluster 2024-02-22T22:44:23.459129+0000 mgr.smithi049.pzczis (mgr.14180) 1080 : cluster [DBG] pgmap v734: 225 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-22T22:44:25.005 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:44:25.006 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:42:55.060325Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:43:59.584602Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.jxhnja on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\nDeploy daemon haproxy.nfs.foo.smithi195.jxhnja ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.439821Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qklhgu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\nDeploy daemon haproxy.nfs.foo.smithi049.qklhgu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.441679Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ivxjfx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:44:25.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:24 smithi195 bash[18068]: cluster 2024-02-22T22:44:23.459129+0000 mgr.smithi049.pzczis (mgr.14180) 1080 : cluster [DBG] pgmap v734: 225 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-22T22:44:25.794 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:44:26.795 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:44:26.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:26 smithi049 bash[14150]: audit 2024-02-22T22:44:24.994994+0000 mgr.smithi049.pzczis (mgr.14180) 1081 : audit [DBG] from='client.15344 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:44:26.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:26 smithi049 bash[14150]: cluster 2024-02-22T22:44:25.460642+0000 mgr.smithi049.pzczis (mgr.14180) 1082 : cluster [DBG] pgmap v735: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:44:27.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:26 smithi195 bash[18068]: audit 2024-02-22T22:44:24.994994+0000 mgr.smithi049.pzczis (mgr.14180) 1081 : audit [DBG] from='client.15344 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:44:27.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:26 smithi195 bash[18068]: cluster 2024-02-22T22:44:25.460642+0000 mgr.smithi049.pzczis (mgr.14180) 1082 : cluster [DBG] pgmap v735: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:44:28.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:28 smithi049 bash[14150]: cluster 2024-02-22T22:44:27.462472+0000 mgr.smithi049.pzczis (mgr.14180) 1083 : cluster [DBG] pgmap v736: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:44:29.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:28 smithi195 bash[18068]: cluster 2024-02-22T22:44:27.462472+0000 mgr.smithi049.pzczis (mgr.14180) 1083 : cluster [DBG] pgmap v736: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:44:30.162 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:44:30.162 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:42:55.060325Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:43:59.584602Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.jxhnja on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\nDeploy daemon haproxy.nfs.foo.smithi195.jxhnja ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.439821Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qklhgu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\nDeploy daemon haproxy.nfs.foo.smithi049.qklhgu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.441679Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ivxjfx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:44:30.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:30 smithi049 bash[14150]: cluster 2024-02-22T22:44:29.463650+0000 mgr.smithi049.pzczis (mgr.14180) 1084 : 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-22T22:44:30.922 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:44:31.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:30 smithi195 bash[18068]: cluster 2024-02-22T22:44:29.463650+0000 mgr.smithi049.pzczis (mgr.14180) 1084 : 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-22T22:44:31.924 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:44:31.937 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:31 smithi049 bash[14150]: audit 2024-02-22T22:44:30.153080+0000 mgr.smithi049.pzczis (mgr.14180) 1085 : audit [DBG] from='client.15348 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:44:32.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:31 smithi195 bash[18068]: audit 2024-02-22T22:44:30.153080+0000 mgr.smithi049.pzczis (mgr.14180) 1085 : audit [DBG] from='client.15348 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:44:32.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:32 smithi049 bash[14150]: cluster 2024-02-22T22:44:31.465597+0000 mgr.smithi049.pzczis (mgr.14180) 1086 : 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-22T22:44:33.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:32 smithi195 bash[18068]: cluster 2024-02-22T22:44:31.465597+0000 mgr.smithi049.pzczis (mgr.14180) 1086 : 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-22T22:44:34.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:34 smithi049 bash[14150]: cluster 2024-02-22T22:44:33.467296+0000 mgr.smithi049.pzczis (mgr.14180) 1087 : 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-22T22:44:35.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:34 smithi195 bash[18068]: cluster 2024-02-22T22:44:33.467296+0000 mgr.smithi049.pzczis (mgr.14180) 1087 : 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-22T22:44:35.086 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:44:35.086 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:42:55.060325Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:43:59.584602Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.jxhnja on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\nDeploy daemon haproxy.nfs.foo.smithi195.jxhnja ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.439821Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qklhgu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\nDeploy daemon haproxy.nfs.foo.smithi049.qklhgu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.441679Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ivxjfx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:44:35.896 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:44:36.897 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:44:36.908 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:36 smithi049 bash[14150]: audit 2024-02-22T22:44:35.077081+0000 mgr.smithi049.pzczis (mgr.14180) 1088 : audit [DBG] from='client.15352 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:44:36.909 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:36 smithi049 bash[14150]: cluster 2024-02-22T22:44:35.468811+0000 mgr.smithi049.pzczis (mgr.14180) 1089 : 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-22T22:44:37.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:36 smithi195 bash[18068]: audit 2024-02-22T22:44:35.077081+0000 mgr.smithi049.pzczis (mgr.14180) 1088 : audit [DBG] from='client.15352 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:44:37.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:36 smithi195 bash[18068]: cluster 2024-02-22T22:44:35.468811+0000 mgr.smithi049.pzczis (mgr.14180) 1089 : 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-22T22:44:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:38 smithi049 bash[14150]: cluster 2024-02-22T22:44:37.469838+0000 mgr.smithi049.pzczis (mgr.14180) 1090 : 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-22T22:44:39.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:38 smithi195 bash[18068]: cluster 2024-02-22T22:44:37.469838+0000 mgr.smithi049.pzczis (mgr.14180) 1090 : 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-22T22:44:40.351 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:44:40.351 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:42:55.060325Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:43:59.584602Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.jxhnja on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\nDeploy daemon haproxy.nfs.foo.smithi195.jxhnja ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.439821Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qklhgu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\nDeploy daemon haproxy.nfs.foo.smithi049.qklhgu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.441679Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ivxjfx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:44:40.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:40 smithi049 bash[14150]: cluster 2024-02-22T22:44:39.470544+0000 mgr.smithi049.pzczis (mgr.14180) 1091 : 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-22T22:44:41.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:40 smithi195 bash[18068]: cluster 2024-02-22T22:44:39.470544+0000 mgr.smithi049.pzczis (mgr.14180) 1091 : 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-22T22:44:41.092 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:44:41.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:41 smithi049 bash[14150]: audit 2024-02-22T22:44:40.342802+0000 mgr.smithi049.pzczis (mgr.14180) 1092 : audit [DBG] from='client.15356 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:44:42.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:41 smithi195 bash[18068]: audit 2024-02-22T22:44:40.342802+0000 mgr.smithi049.pzczis (mgr.14180) 1092 : audit [DBG] from='client.15356 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:44:42.093 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:44:42.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:42 smithi049 bash[14150]: cluster 2024-02-22T22:44:41.472639+0000 mgr.smithi049.pzczis (mgr.14180) 1093 : 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-22T22:44:43.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:42 smithi195 bash[18068]: cluster 2024-02-22T22:44:41.472639+0000 mgr.smithi049.pzczis (mgr.14180) 1093 : 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-22T22:44:44.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:44 smithi049 bash[14150]: cluster 2024-02-22T22:44:43.473753+0000 mgr.smithi049.pzczis (mgr.14180) 1094 : 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-22T22:44:45.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:44 smithi195 bash[18068]: cluster 2024-02-22T22:44:43.473753+0000 mgr.smithi049.pzczis (mgr.14180) 1094 : 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-22T22:44:45.090 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:44:45.090 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:42:55.060325Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:43:59.584602Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.jxhnja on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\nDeploy daemon haproxy.nfs.foo.smithi195.jxhnja ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.439821Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qklhgu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\nDeploy daemon haproxy.nfs.foo.smithi049.qklhgu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.441679Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ivxjfx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:44:45.877 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:44:46.879 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:44:46.890 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:46 smithi049 bash[14150]: audit 2024-02-22T22:44:45.060411+0000 mgr.smithi049.pzczis (mgr.14180) 1095 : audit [DBG] from='client.15360 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:44:46.891 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:46 smithi049 bash[14150]: cluster 2024-02-22T22:44:45.475194+0000 mgr.smithi049.pzczis (mgr.14180) 1096 : 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-22T22:44:47.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:46 smithi195 bash[18068]: audit 2024-02-22T22:44:45.060411+0000 mgr.smithi049.pzczis (mgr.14180) 1095 : audit [DBG] from='client.15360 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:44:47.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:46 smithi195 bash[18068]: cluster 2024-02-22T22:44:45.475194+0000 mgr.smithi049.pzczis (mgr.14180) 1096 : 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-22T22:44:48.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:48 smithi049 bash[14150]: cluster 2024-02-22T22:44:47.477086+0000 mgr.smithi049.pzczis (mgr.14180) 1097 : 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-22T22:44:49.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:48 smithi195 bash[18068]: cluster 2024-02-22T22:44:47.477086+0000 mgr.smithi049.pzczis (mgr.14180) 1097 : 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-22T22:44:50.020 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:44:50.020 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:42:55.060325Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:43:59.584602Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.jxhnja on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\nDeploy daemon haproxy.nfs.foo.smithi195.jxhnja ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.439821Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qklhgu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\nDeploy daemon haproxy.nfs.foo.smithi049.qklhgu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.441679Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ivxjfx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:44:50.831 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:44:50.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:50 smithi049 bash[14150]: cluster 2024-02-22T22:44:49.477915+0000 mgr.smithi049.pzczis (mgr.14180) 1098 : 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-22T22:44:51.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:50 smithi195 bash[18068]: cluster 2024-02-22T22:44:49.477915+0000 mgr.smithi049.pzczis (mgr.14180) 1098 : 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-22T22:44:51.832 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:44:51.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:51 smithi049 bash[14150]: audit 2024-02-22T22:44:50.015679+0000 mgr.smithi049.pzczis (mgr.14180) 1099 : audit [DBG] from='client.15364 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:44:52.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:51 smithi195 bash[18068]: audit 2024-02-22T22:44:50.015679+0000 mgr.smithi049.pzczis (mgr.14180) 1099 : audit [DBG] from='client.15364 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:44:52.933 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:52 smithi049 bash[14150]: cluster 2024-02-22T22:44:51.479766+0000 mgr.smithi049.pzczis (mgr.14180) 1100 : 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-22T22:44:53.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:52 smithi195 bash[18068]: cluster 2024-02-22T22:44:51.479766+0000 mgr.smithi049.pzczis (mgr.14180) 1100 : 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-22T22:44:54.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:54 smithi049 bash[14150]: cluster 2024-02-22T22:44:53.481418+0000 mgr.smithi049.pzczis (mgr.14180) 1101 : 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-22T22:44:54.965 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:44:54.965 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:42:55.060325Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:43:59.584602Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.jxhnja on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\nDeploy daemon haproxy.nfs.foo.smithi195.jxhnja ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.439821Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qklhgu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\nDeploy daemon haproxy.nfs.foo.smithi049.qklhgu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.441679Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ivxjfx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:44:55.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:54 smithi195 bash[18068]: cluster 2024-02-22T22:44:53.481418+0000 mgr.smithi049.pzczis (mgr.14180) 1101 : 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-22T22:44:55.736 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:44:56.738 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:44:56.937 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:56 smithi049 bash[14150]: audit 2024-02-22T22:44:54.961873+0000 mgr.smithi049.pzczis (mgr.14180) 1102 : audit [DBG] from='client.25089 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:44:56.937 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:56 smithi049 bash[14150]: cluster 2024-02-22T22:44:55.483055+0000 mgr.smithi049.pzczis (mgr.14180) 1103 : 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-22T22:44:57.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:56 smithi195 bash[18068]: audit 2024-02-22T22:44:54.961873+0000 mgr.smithi049.pzczis (mgr.14180) 1102 : audit [DBG] from='client.25089 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:44:57.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:56 smithi195 bash[18068]: cluster 2024-02-22T22:44:55.483055+0000 mgr.smithi049.pzczis (mgr.14180) 1103 : 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-22T22:44:58.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:44:58 smithi049 bash[14150]: cluster 2024-02-22T22:44:57.484093+0000 mgr.smithi049.pzczis (mgr.14180) 1104 : 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-22T22:44:59.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:44:58 smithi195 bash[18068]: cluster 2024-02-22T22:44:57.484093+0000 mgr.smithi049.pzczis (mgr.14180) 1104 : 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-22T22:45:00.029 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:45:00.030 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:42:55.060325Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:43:59.584602Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.jxhnja on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\nDeploy daemon haproxy.nfs.foo.smithi195.jxhnja ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.439821Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qklhgu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\nDeploy daemon haproxy.nfs.foo.smithi049.qklhgu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.441679Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ivxjfx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:45:00.813 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:45:01.025 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:00 smithi195 bash[18068]: cluster 2024-02-22T22:44:59.485289+0000 mgr.smithi049.pzczis (mgr.14180) 1105 : 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-22T22:45:01.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:00 smithi049 bash[14150]: cluster 2024-02-22T22:44:59.485289+0000 mgr.smithi049.pzczis (mgr.14180) 1105 : 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-22T22:45:01.814 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:45:01.829 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:01 smithi049 bash[14150]: audit 2024-02-22T22:45:00.026163+0000 mgr.smithi049.pzczis (mgr.14180) 1106 : audit [DBG] from='client.15372 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:45:02.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:01 smithi195 bash[18068]: audit 2024-02-22T22:45:00.026163+0000 mgr.smithi049.pzczis (mgr.14180) 1106 : audit [DBG] from='client.15372 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:45:03.048 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:02 smithi049 bash[14150]: cluster 2024-02-22T22:45:01.487227+0000 mgr.smithi049.pzczis (mgr.14180) 1107 : 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-22T22:45:03.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:02 smithi195 bash[18068]: cluster 2024-02-22T22:45:01.487227+0000 mgr.smithi049.pzczis (mgr.14180) 1107 : 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-22T22:45:04.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:03 smithi195 bash[18068]: audit 2024-02-22T22:45:03.447207+0000 mon.smithi049 (mon.0) 952 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:45:04.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:03 smithi049 bash[14150]: audit 2024-02-22T22:45:03.447207+0000 mon.smithi049 (mon.0) 952 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:45:04.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:04 smithi049 bash[14150]: cluster 2024-02-22T22:45:03.488796+0000 mgr.smithi049.pzczis (mgr.14180) 1108 : 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-22T22:45:04.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:04 smithi049 bash[14150]: audit 2024-02-22T22:45:03.756815+0000 mon.smithi049 (mon.0) 953 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:45:04.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:04 smithi049 bash[14150]: audit 2024-02-22T22:45:03.758358+0000 mon.smithi049 (mon.0) 954 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:45:04.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:04 smithi049 bash[14150]: audit 2024-02-22T22:45:03.766006+0000 mon.smithi049 (mon.0) 955 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:45:04.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:04 smithi049 bash[14150]: cluster 2024-02-22T22:45:03.766808+0000 mgr.smithi049.pzczis (mgr.14180) 1109 : cluster [DBG] pgmap v755: 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-22T22:45:04.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:04 smithi049 bash[14150]: audit 2024-02-22T22:45:03.772906+0000 mon.smithi049 (mon.0) 956 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:45:04.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:04 smithi049 bash[14150]: audit 2024-02-22T22:45:03.783675+0000 mon.smithi049 (mon.0) 957 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:45:05.017 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:45:05.017 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:42:55.060325Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.xadgue on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:43:59.584602Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.jxhnja on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\nDeploy daemon haproxy.nfs.foo.smithi195.jxhnja ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.439821Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qklhgu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\nDeploy daemon haproxy.nfs.foo.smithi049.qklhgu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.441679Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ivxjfx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:45:05.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:04 smithi195 bash[18068]: cluster 2024-02-22T22:45:03.488796+0000 mgr.smithi049.pzczis (mgr.14180) 1108 : 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-22T22:45:05.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:04 smithi195 bash[18068]: audit 2024-02-22T22:45:03.756815+0000 mon.smithi049 (mon.0) 953 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:45:05.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:04 smithi195 bash[18068]: audit 2024-02-22T22:45:03.758358+0000 mon.smithi049 (mon.0) 954 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:45:05.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:04 smithi195 bash[18068]: audit 2024-02-22T22:45:03.766006+0000 mon.smithi049 (mon.0) 955 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:45:05.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:04 smithi195 bash[18068]: cluster 2024-02-22T22:45:03.766808+0000 mgr.smithi049.pzczis (mgr.14180) 1109 : cluster [DBG] pgmap v755: 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-22T22:45:05.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:04 smithi195 bash[18068]: audit 2024-02-22T22:45:03.772906+0000 mon.smithi049 (mon.0) 956 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:45:05.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:04 smithi195 bash[18068]: audit 2024-02-22T22:45:03.783675+0000 mon.smithi049 (mon.0) 957 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:45:05.709 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:45:06.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:05 smithi195 bash[18068]: cephadm 2024-02-22T22:45:03.787247+0000 mgr.smithi049.pzczis (mgr.14180) 1110 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.zewcyc on smithi195 2024-02-22T22:45:06.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:05 smithi195 bash[18068]: cluster 2024-02-22T22:45:04.764074+0000 mon.smithi049 (mon.0) 958 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:45:06.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:05 smithi195 bash[18068]: cluster 2024-02-22T22:45:04.764131+0000 mon.smithi049 (mon.0) 959 : cluster [INF] Cluster is now healthy 2024-02-22T22:45:06.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:05 smithi049 bash[14150]: cephadm 2024-02-22T22:45:03.787247+0000 mgr.smithi049.pzczis (mgr.14180) 1110 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.zewcyc on smithi195 2024-02-22T22:45:06.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:05 smithi049 bash[14150]: cluster 2024-02-22T22:45:04.764074+0000 mon.smithi049 (mon.0) 958 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:45:06.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:05 smithi049 bash[14150]: cluster 2024-02-22T22:45:04.764131+0000 mon.smithi049 (mon.0) 959 : cluster [INF] Cluster is now healthy 2024-02-22T22:45:06.710 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:45:06.916 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:06 smithi049 bash[14150]: audit 2024-02-22T22:45:05.006954+0000 mgr.smithi049.pzczis (mgr.14180) 1111 : audit [DBG] from='client.15376 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:45:06.916 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:06 smithi049 bash[14150]: cluster 2024-02-22T22:45:05.768436+0000 mgr.smithi049.pzczis (mgr.14180) 1112 : cluster [DBG] pgmap v756: 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-22T22:45:07.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:06 smithi195 bash[18068]: audit 2024-02-22T22:45:05.006954+0000 mgr.smithi049.pzczis (mgr.14180) 1111 : audit [DBG] from='client.15376 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:45:07.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:06 smithi195 bash[18068]: cluster 2024-02-22T22:45:05.768436+0000 mgr.smithi049.pzczis (mgr.14180) 1112 : cluster [DBG] pgmap v756: 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-22T22:45:08.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:08 smithi049 bash[14150]: audit 2024-02-22T22:45:07.670110+0000 mon.smithi049 (mon.0) 960 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:45:08.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:08 smithi049 bash[14150]: cluster 2024-02-22T22:45:07.769740+0000 mgr.smithi049.pzczis (mgr.14180) 1113 : cluster [DBG] pgmap v757: 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-22T22:45:08.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:08 smithi049 bash[14150]: audit 2024-02-22T22:45:07.960045+0000 mon.smithi049 (mon.0) 961 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.zewcyc"}]: dispatch 2024-02-22T22:45:09.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:08 smithi195 bash[18068]: audit 2024-02-22T22:45:07.670110+0000 mon.smithi049 (mon.0) 960 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:45:09.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:08 smithi195 bash[18068]: cluster 2024-02-22T22:45:07.769740+0000 mgr.smithi049.pzczis (mgr.14180) 1113 : cluster [DBG] pgmap v757: 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-22T22:45:09.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:08 smithi195 bash[18068]: audit 2024-02-22T22:45:07.960045+0000 mon.smithi049 (mon.0) 961 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.zewcyc"}]: dispatch 2024-02-22T22:45:09.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: cephadm 2024-02-22T22:45:07.958739+0000 mgr.smithi049.pzczis (mgr.14180) 1114 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc 2024-02-22T22:45:09.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:45:09.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc 2024-02-22T22:45:09.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc 2024-02-22T22:45:09.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:45:09.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc 2024-02-22T22:45:09.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.zewcyc ... 2024-02-22T22:45:09.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:45:09.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:45:09.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:45:09.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:45:09.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:45:09.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:45:09.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:45:09.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:45:09.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:45:09.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:45:09.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc 2024-02-22T22:45:09.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:45:09.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc 2024-02-22T22:45:09.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc 2024-02-22T22:45:09.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:45:09.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc 2024-02-22T22:45:09.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.zewcyc ... 2024-02-22T22:45:09.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:45:09.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:45:09.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:45:09.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:45:09.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:45:09.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: cephadm 2024-02-22T22:45:07.959272+0000 mgr.smithi049.pzczis (mgr.14180) 1115 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.zewcyc 2024-02-22T22:45:09.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: cephadm 2024-02-22T22:45:07.961958+0000 mgr.smithi049.pzczis (mgr.14180) 1116 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.zewcyc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc 2024-02-22T22:45:09.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:45:09.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc 2024-02-22T22:45:09.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc 2024-02-22T22:45:09.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:45:09.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc 2024-02-22T22:45:09.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.zewcyc ... 2024-02-22T22:45:09.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:45:09.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:45:09.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:45:09.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:45:09.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:45:09.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:09 smithi049 bash[14150]: cephadm 2024-02-22T22:45:07.967276+0000 mgr.smithi049.pzczis (mgr.14180) 1117 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.fjacqx on smithi049 2024-02-22T22:45:10.022 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:45:10.022 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:43:59.584602Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.jxhnja on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-jxhnja\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.jxhnja\nDeploy daemon haproxy.nfs.foo.smithi195.jxhnja ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.439821Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.qklhgu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-qklhgu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.qklhgu\nDeploy daemon haproxy.nfs.foo.smithi049.qklhgu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:44:03.441679Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.ivxjfx on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:07.961708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zewcyc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\nDeploy daemon haproxy.nfs.foo.smithi195.zewcyc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:45:10.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: cephadm 2024-02-22T22:45:07.958739+0000 mgr.smithi049.pzczis (mgr.14180) 1114 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc 2024-02-22T22:45:10.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:45:10.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc 2024-02-22T22:45:10.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc 2024-02-22T22:45:10.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:45:10.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc 2024-02-22T22:45:10.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.zewcyc ... 2024-02-22T22:45:10.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:45:10.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:45:10.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:45:10.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:45:10.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:45:10.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:45:10.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:45:10.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:45:10.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:45:10.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:45:10.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc 2024-02-22T22:45:10.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:45:10.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc 2024-02-22T22:45:10.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc 2024-02-22T22:45:10.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:45:10.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc 2024-02-22T22:45:10.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.zewcyc ... 2024-02-22T22:45:10.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:45:10.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:45:10.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:45:10.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:45:10.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:45:10.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: cephadm 2024-02-22T22:45:07.959272+0000 mgr.smithi049.pzczis (mgr.14180) 1115 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.zewcyc 2024-02-22T22:45:10.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: cephadm 2024-02-22T22:45:07.961958+0000 mgr.smithi049.pzczis (mgr.14180) 1116 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.zewcyc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc 2024-02-22T22:45:10.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:45:10.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc 2024-02-22T22:45:10.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc 2024-02-22T22:45:10.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:45:10.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc 2024-02-22T22:45:10.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.zewcyc ... 2024-02-22T22:45:10.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:45:10.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:45:10.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:45:10.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:45:10.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:45:10.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:09 smithi195 bash[18068]: cephadm 2024-02-22T22:45:07.967276+0000 mgr.smithi049.pzczis (mgr.14180) 1117 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.fjacqx on smithi049 2024-02-22T22:45:10.833 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:45:10.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:10 smithi049 bash[14150]: cluster 2024-02-22T22:45:09.770209+0000 mgr.smithi049.pzczis (mgr.14180) 1118 : cluster [DBG] pgmap v758: 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-22T22:45:11.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:10 smithi195 bash[18068]: cluster 2024-02-22T22:45:09.770209+0000 mgr.smithi049.pzczis (mgr.14180) 1118 : cluster [DBG] pgmap v758: 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-22T22:45:11.834 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:45:11.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:11 smithi049 bash[14150]: audit 2024-02-22T22:45:10.012661+0000 mgr.smithi049.pzczis (mgr.14180) 1119 : audit [DBG] from='client.15380 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:45:12.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:11 smithi195 bash[18068]: audit 2024-02-22T22:45:10.012661+0000 mgr.smithi049.pzczis (mgr.14180) 1119 : audit [DBG] from='client.15380 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:45:12.956 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:12 smithi049 bash[14150]: cluster 2024-02-22T22:45:11.771883+0000 mgr.smithi049.pzczis (mgr.14180) 1120 : cluster [DBG] pgmap v759: 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-22T22:45:12.956 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:12 smithi049 bash[14150]: audit 2024-02-22T22:45:12.056205+0000 mon.smithi049 (mon.0) 962 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.fjacqx"}]: dispatch 2024-02-22T22:45:13.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:12 smithi195 bash[18068]: cluster 2024-02-22T22:45:11.771883+0000 mgr.smithi049.pzczis (mgr.14180) 1120 : cluster [DBG] pgmap v759: 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-22T22:45:13.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:12 smithi195 bash[18068]: audit 2024-02-22T22:45:12.056205+0000 mon.smithi049 (mon.0) 962 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.fjacqx"}]: dispatch 2024-02-22T22:45:14.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: cephadm 2024-02-22T22:45:12.055513+0000 mgr.smithi049.pzczis (mgr.14180) 1121 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx 2024-02-22T22:45:14.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:45:14.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx 2024-02-22T22:45:14.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx 2024-02-22T22:45:14.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:45:14.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx 2024-02-22T22:45:14.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.fjacqx ... 2024-02-22T22:45:14.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:45:14.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:45:14.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:45:14.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:45:14.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:45:14.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:45:14.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:45:14.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:45:14.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:45:14.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:45:14.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx 2024-02-22T22:45:14.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:45:14.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx 2024-02-22T22:45:14.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx 2024-02-22T22:45:14.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:45:14.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx 2024-02-22T22:45:14.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.fjacqx ... 2024-02-22T22:45:14.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:45:14.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:45:14.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:45:14.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:45:14.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:45:14.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: cephadm 2024-02-22T22:45:12.055800+0000 mgr.smithi049.pzczis (mgr.14180) 1122 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.fjacqx 2024-02-22T22:45:14.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: cephadm 2024-02-22T22:45:12.057122+0000 mgr.smithi049.pzczis (mgr.14180) 1123 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.fjacqx on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx 2024-02-22T22:45:14.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:45:14.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx 2024-02-22T22:45:14.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx 2024-02-22T22:45:14.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:45:14.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx 2024-02-22T22:45:14.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.fjacqx ... 2024-02-22T22:45:14.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:45:14.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:45:14.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:45:14.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:45:14.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:45:14.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: cephadm 2024-02-22T22:45:12.059612+0000 mgr.smithi049.pzczis (mgr.14180) 1124 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.agsiyg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:45:14.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: cephadm 2024-02-22T22:45:12.061796+0000 mgr.smithi049.pzczis (mgr.14180) 1125 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:45:14.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: cluster 2024-02-22T22:45:12.062729+0000 mgr.smithi049.pzczis (mgr.14180) 1126 : cluster [DBG] pgmap v760: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:45:14.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:13 smithi195 bash[18068]: cluster 2024-02-22T22:45:12.692870+0000 mon.smithi049 (mon.0) 963 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:45:14.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: cephadm 2024-02-22T22:45:12.055513+0000 mgr.smithi049.pzczis (mgr.14180) 1121 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx 2024-02-22T22:45:14.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:45:14.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx 2024-02-22T22:45:14.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx 2024-02-22T22:45:14.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:45:14.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx 2024-02-22T22:45:14.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.fjacqx ... 2024-02-22T22:45:14.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:45:14.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:45:14.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:45:14.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:45:14.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:45:14.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:45:14.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:45:14.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:45:14.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:45:14.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:45:14.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx 2024-02-22T22:45:14.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:45:14.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx 2024-02-22T22:45:14.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx 2024-02-22T22:45:14.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:45:14.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx 2024-02-22T22:45:14.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.fjacqx ... 2024-02-22T22:45:14.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:45:14.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:45:14.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:45:14.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:45:14.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:45:14.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: cephadm 2024-02-22T22:45:12.055800+0000 mgr.smithi049.pzczis (mgr.14180) 1122 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.fjacqx 2024-02-22T22:45:14.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: cephadm 2024-02-22T22:45:12.057122+0000 mgr.smithi049.pzczis (mgr.14180) 1123 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.fjacqx on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx 2024-02-22T22:45:14.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:45:14.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx 2024-02-22T22:45:14.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx 2024-02-22T22:45:14.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:45:14.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx 2024-02-22T22:45:14.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.fjacqx ... 2024-02-22T22:45:14.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:45:14.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:45:14.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:45:14.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:45:14.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:45:14.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: cephadm 2024-02-22T22:45:12.059612+0000 mgr.smithi049.pzczis (mgr.14180) 1124 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.agsiyg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:45:14.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: cephadm 2024-02-22T22:45:12.061796+0000 mgr.smithi049.pzczis (mgr.14180) 1125 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:45:14.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: cluster 2024-02-22T22:45:12.062729+0000 mgr.smithi049.pzczis (mgr.14180) 1126 : cluster [DBG] pgmap v760: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:45:14.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:13 smithi049 bash[14150]: cluster 2024-02-22T22:45:12.692870+0000 mon.smithi049 (mon.0) 963 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:45:15.121 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:45:15.121 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:07.961708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zewcyc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\nDeploy daemon haproxy.nfs.foo.smithi195.zewcyc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.057001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fjacqx on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\nDeploy daemon haproxy.nfs.foo.smithi049.fjacqx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.059482Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.agsiyg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:45:15.882 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:45:16.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:15 smithi195 bash[18068]: cluster 2024-02-22T22:45:14.064218+0000 mgr.smithi049.pzczis (mgr.14180) 1127 : cluster [DBG] pgmap v761: 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-22T22:45:16.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:15 smithi049 bash[14150]: cluster 2024-02-22T22:45:14.064218+0000 mgr.smithi049.pzczis (mgr.14180) 1127 : cluster [DBG] pgmap v761: 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-22T22:45:16.883 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:45:16.894 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:16 smithi049 bash[14150]: audit 2024-02-22T22:45:15.111869+0000 mgr.smithi049.pzczis (mgr.14180) 1128 : audit [DBG] from='client.15384 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:45:17.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:16 smithi195 bash[18068]: audit 2024-02-22T22:45:15.111869+0000 mgr.smithi049.pzczis (mgr.14180) 1128 : audit [DBG] from='client.15384 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:45:18.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:17 smithi195 bash[18068]: cluster 2024-02-22T22:45:16.066177+0000 mgr.smithi049.pzczis (mgr.14180) 1129 : 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-22T22:45:18.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:17 smithi195 bash[18068]: audit 2024-02-22T22:45:16.882379+0000 mon.smithi049 (mon.0) 964 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:45:18.068 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:17 smithi049 bash[14150]: cluster 2024-02-22T22:45:16.066177+0000 mgr.smithi049.pzczis (mgr.14180) 1129 : 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-22T22:45:18.068 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:17 smithi049 bash[14150]: audit 2024-02-22T22:45:16.882379+0000 mon.smithi049 (mon.0) 964 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:45:19.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:19 smithi049 bash[14150]: cluster 2024-02-22T22:45:18.067963+0000 mgr.smithi049.pzczis (mgr.14180) 1130 : 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-22T22:45:19.974 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:45:19.974 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:07.961708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zewcyc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\nDeploy daemon haproxy.nfs.foo.smithi195.zewcyc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.057001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fjacqx on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\nDeploy daemon haproxy.nfs.foo.smithi049.fjacqx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.059482Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.agsiyg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:45:20.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:19 smithi195 bash[18068]: cluster 2024-02-22T22:45:18.067963+0000 mgr.smithi049.pzczis (mgr.14180) 1130 : 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-22T22:45:20.774 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:45:21.775 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:45:21.985 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:21 smithi049 bash[14150]: audit 2024-02-22T22:45:19.965706+0000 mgr.smithi049.pzczis (mgr.14180) 1131 : audit [DBG] from='client.15388 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:45:21.985 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:21 smithi049 bash[14150]: cluster 2024-02-22T22:45:20.068828+0000 mgr.smithi049.pzczis (mgr.14180) 1132 : 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-22T22:45:22.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:21 smithi195 bash[18068]: audit 2024-02-22T22:45:19.965706+0000 mgr.smithi049.pzczis (mgr.14180) 1131 : audit [DBG] from='client.15388 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:45:22.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:21 smithi195 bash[18068]: cluster 2024-02-22T22:45:20.068828+0000 mgr.smithi049.pzczis (mgr.14180) 1132 : 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-22T22:45:23.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:23 smithi049 bash[14150]: cluster 2024-02-22T22:45:22.070838+0000 mgr.smithi049.pzczis (mgr.14180) 1133 : 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-22T22:45:23.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:23 smithi049 bash[14150]: audit 2024-02-22T22:45:22.671469+0000 mon.smithi049 (mon.0) 965 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:45:24.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:23 smithi195 bash[18068]: cluster 2024-02-22T22:45:22.070838+0000 mgr.smithi049.pzczis (mgr.14180) 1133 : 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-22T22:45:24.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:23 smithi195 bash[18068]: audit 2024-02-22T22:45:22.671469+0000 mon.smithi049 (mon.0) 965 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:45:24.966 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:45:24.967 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:07.961708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zewcyc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\nDeploy daemon haproxy.nfs.foo.smithi195.zewcyc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.057001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fjacqx on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\nDeploy daemon haproxy.nfs.foo.smithi049.fjacqx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.059482Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.agsiyg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:45:25.735 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:45:25.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:25 smithi049 bash[14150]: cluster 2024-02-22T22:45:24.071733+0000 mgr.smithi049.pzczis (mgr.14180) 1134 : cluster [DBG] pgmap v766: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:45:26.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:25 smithi195 bash[18068]: cluster 2024-02-22T22:45:24.071733+0000 mgr.smithi049.pzczis (mgr.14180) 1134 : cluster [DBG] pgmap v766: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:45:26.737 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:45:26.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:26 smithi049 bash[14150]: audit 2024-02-22T22:45:24.957410+0000 mgr.smithi049.pzczis (mgr.14180) 1135 : audit [DBG] from='client.15392 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:45:27.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:26 smithi195 bash[18068]: audit 2024-02-22T22:45:24.957410+0000 mgr.smithi049.pzczis (mgr.14180) 1135 : audit [DBG] from='client.15392 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:45:27.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:27 smithi049 bash[14150]: cluster 2024-02-22T22:45:26.073642+0000 mgr.smithi049.pzczis (mgr.14180) 1136 : cluster [DBG] pgmap v767: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:45:28.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:27 smithi195 bash[18068]: cluster 2024-02-22T22:45:26.073642+0000 mgr.smithi049.pzczis (mgr.14180) 1136 : cluster [DBG] pgmap v767: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:45:29.926 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:45:29.927 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:07.961708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zewcyc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\nDeploy daemon haproxy.nfs.foo.smithi195.zewcyc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.057001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fjacqx on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\nDeploy daemon haproxy.nfs.foo.smithi049.fjacqx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.059482Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.agsiyg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:45:29.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:29 smithi049 bash[14150]: cluster 2024-02-22T22:45:28.075141+0000 mgr.smithi049.pzczis (mgr.14180) 1137 : cluster [DBG] pgmap v768: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:45:30.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:29 smithi195 bash[18068]: cluster 2024-02-22T22:45:28.075141+0000 mgr.smithi049.pzczis (mgr.14180) 1137 : cluster [DBG] pgmap v768: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:45:30.676 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:45:31.677 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:45:31.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:31 smithi049 bash[14150]: audit 2024-02-22T22:45:29.922466+0000 mgr.smithi049.pzczis (mgr.14180) 1138 : audit [DBG] from='client.15396 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:45:31.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:31 smithi049 bash[14150]: cluster 2024-02-22T22:45:30.076156+0000 mgr.smithi049.pzczis (mgr.14180) 1139 : cluster [DBG] pgmap v769: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:45:32.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:31 smithi195 bash[18068]: audit 2024-02-22T22:45:29.922466+0000 mgr.smithi049.pzczis (mgr.14180) 1138 : audit [DBG] from='client.15396 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:45:32.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:31 smithi195 bash[18068]: cluster 2024-02-22T22:45:30.076156+0000 mgr.smithi049.pzczis (mgr.14180) 1139 : cluster [DBG] pgmap v769: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:45:33.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:33 smithi049 bash[14150]: cluster 2024-02-22T22:45:32.078096+0000 mgr.smithi049.pzczis (mgr.14180) 1140 : cluster [DBG] pgmap v770: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:45:34.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:33 smithi195 bash[18068]: cluster 2024-02-22T22:45:32.078096+0000 mgr.smithi049.pzczis (mgr.14180) 1140 : cluster [DBG] pgmap v770: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:45:34.782 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:45:34.782 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:07.961708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zewcyc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\nDeploy daemon haproxy.nfs.foo.smithi195.zewcyc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.057001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fjacqx on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\nDeploy daemon haproxy.nfs.foo.smithi049.fjacqx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.059482Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.agsiyg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:45:35.531 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:45:35.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:35 smithi049 bash[14150]: cluster 2024-02-22T22:45:34.079803+0000 mgr.smithi049.pzczis (mgr.14180) 1141 : cluster [DBG] pgmap v771: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:45:35.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:35 smithi049 bash[14150]: audit 2024-02-22T22:45:34.772521+0000 mgr.smithi049.pzczis (mgr.14180) 1142 : audit [DBG] from='client.15400 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:45:36.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:35 smithi195 bash[18068]: cluster 2024-02-22T22:45:34.079803+0000 mgr.smithi049.pzczis (mgr.14180) 1141 : cluster [DBG] pgmap v771: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-22T22:45:36.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:35 smithi195 bash[18068]: audit 2024-02-22T22:45:34.772521+0000 mgr.smithi049.pzczis (mgr.14180) 1142 : audit [DBG] from='client.15400 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:45:36.532 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:45:37.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:37 smithi049 bash[14150]: cluster 2024-02-22T22:45:36.081687+0000 mgr.smithi049.pzczis (mgr.14180) 1143 : cluster [DBG] pgmap v772: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:45:38.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:37 smithi195 bash[18068]: cluster 2024-02-22T22:45:36.081687+0000 mgr.smithi049.pzczis (mgr.14180) 1143 : cluster [DBG] pgmap v772: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:45:39.827 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:45:39.827 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:07.961708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zewcyc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\nDeploy daemon haproxy.nfs.foo.smithi195.zewcyc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.057001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fjacqx on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\nDeploy daemon haproxy.nfs.foo.smithi049.fjacqx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.059482Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.agsiyg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:45:40.007 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:39 smithi049 bash[14150]: cluster 2024-02-22T22:45:38.083365+0000 mgr.smithi049.pzczis (mgr.14180) 1144 : 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-22T22:45:40.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:39 smithi195 bash[18068]: cluster 2024-02-22T22:45:38.083365+0000 mgr.smithi049.pzczis (mgr.14180) 1144 : 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-22T22:45:40.612 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:45:41.613 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:45:41.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:41 smithi049 bash[14150]: audit 2024-02-22T22:45:39.818502+0000 mgr.smithi049.pzczis (mgr.14180) 1145 : audit [DBG] from='client.15404 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:45:41.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:41 smithi049 bash[14150]: cluster 2024-02-22T22:45:40.084359+0000 mgr.smithi049.pzczis (mgr.14180) 1146 : 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-22T22:45:42.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:41 smithi195 bash[18068]: audit 2024-02-22T22:45:39.818502+0000 mgr.smithi049.pzczis (mgr.14180) 1145 : audit [DBG] from='client.15404 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:45:42.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:41 smithi195 bash[18068]: cluster 2024-02-22T22:45:40.084359+0000 mgr.smithi049.pzczis (mgr.14180) 1146 : 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-22T22:45:44.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:43 smithi195 bash[18068]: cluster 2024-02-22T22:45:42.086272+0000 mgr.smithi049.pzczis (mgr.14180) 1147 : 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-22T22:45:44.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:43 smithi049 bash[14150]: cluster 2024-02-22T22:45:42.086272+0000 mgr.smithi049.pzczis (mgr.14180) 1147 : 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-22T22:45:44.638 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:45:44.638 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:07.961708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zewcyc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\nDeploy daemon haproxy.nfs.foo.smithi195.zewcyc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.057001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fjacqx on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\nDeploy daemon haproxy.nfs.foo.smithi049.fjacqx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.059482Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.agsiyg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:45:45.368 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:45:46.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:45 smithi195 bash[18068]: cluster 2024-02-22T22:45:44.088147+0000 mgr.smithi049.pzczis (mgr.14180) 1148 : 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-22T22:45:46.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:45 smithi195 bash[18068]: audit 2024-02-22T22:45:44.634413+0000 mgr.smithi049.pzczis (mgr.14180) 1149 : audit [DBG] from='client.15408 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:45:46.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:45 smithi049 bash[14150]: cluster 2024-02-22T22:45:44.088147+0000 mgr.smithi049.pzczis (mgr.14180) 1148 : 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-22T22:45:46.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:45 smithi049 bash[14150]: audit 2024-02-22T22:45:44.634413+0000 mgr.smithi049.pzczis (mgr.14180) 1149 : audit [DBG] from='client.15408 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:45:46.369 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:45:48.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:47 smithi195 bash[18068]: cluster 2024-02-22T22:45:46.090121+0000 mgr.smithi049.pzczis (mgr.14180) 1150 : 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-22T22:45:48.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:47 smithi049 bash[14150]: cluster 2024-02-22T22:45:46.090121+0000 mgr.smithi049.pzczis (mgr.14180) 1150 : 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-22T22:45:49.525 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:45:49.525 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:07.961708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zewcyc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\nDeploy daemon haproxy.nfs.foo.smithi195.zewcyc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.057001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fjacqx on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\nDeploy daemon haproxy.nfs.foo.smithi049.fjacqx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.059482Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.agsiyg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:45:49.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:49 smithi049 bash[14150]: cluster 2024-02-22T22:45:48.091780+0000 mgr.smithi049.pzczis (mgr.14180) 1151 : 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-22T22:45:50.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:49 smithi195 bash[18068]: cluster 2024-02-22T22:45:48.091780+0000 mgr.smithi049.pzczis (mgr.14180) 1151 : 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-22T22:45:50.275 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:45:51.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:50 smithi195 bash[18068]: audit 2024-02-22T22:45:49.516899+0000 mgr.smithi049.pzczis (mgr.14180) 1152 : audit [DBG] from='client.15412 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:45:51.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:50 smithi049 bash[14150]: audit 2024-02-22T22:45:49.516899+0000 mgr.smithi049.pzczis (mgr.14180) 1152 : audit [DBG] from='client.15412 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:45:51.276 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:45:52.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:51 smithi195 bash[18068]: cluster 2024-02-22T22:45:50.092821+0000 mgr.smithi049.pzczis (mgr.14180) 1153 : 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-22T22:45:52.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:51 smithi049 bash[14150]: cluster 2024-02-22T22:45:50.092821+0000 mgr.smithi049.pzczis (mgr.14180) 1153 : 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-22T22:45:54.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:53 smithi195 bash[18068]: cluster 2024-02-22T22:45:52.094552+0000 mgr.smithi049.pzczis (mgr.14180) 1154 : 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-22T22:45:54.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:53 smithi049 bash[14150]: cluster 2024-02-22T22:45:52.094552+0000 mgr.smithi049.pzczis (mgr.14180) 1154 : 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-22T22:45:54.298 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:45:54.298 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:07.961708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zewcyc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\nDeploy daemon haproxy.nfs.foo.smithi195.zewcyc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.057001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fjacqx on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\nDeploy daemon haproxy.nfs.foo.smithi049.fjacqx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.059482Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.agsiyg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:45:55.071 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:45:56.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:55 smithi195 bash[18068]: cluster 2024-02-22T22:45:54.095926+0000 mgr.smithi049.pzczis (mgr.14180) 1155 : 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-22T22:45:56.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:55 smithi195 bash[18068]: audit 2024-02-22T22:45:54.290035+0000 mgr.smithi049.pzczis (mgr.14180) 1156 : audit [DBG] from='client.15416 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:45:56.072 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:45:56.084 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:55 smithi049 bash[14150]: cluster 2024-02-22T22:45:54.095926+0000 mgr.smithi049.pzczis (mgr.14180) 1155 : 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-22T22:45:56.084 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:55 smithi049 bash[14150]: audit 2024-02-22T22:45:54.290035+0000 mgr.smithi049.pzczis (mgr.14180) 1156 : audit [DBG] from='client.15416 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:45:57.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:57 smithi049 bash[14150]: cluster 2024-02-22T22:45:56.097152+0000 mgr.smithi049.pzczis (mgr.14180) 1157 : 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-22T22:45:58.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:57 smithi195 bash[18068]: cluster 2024-02-22T22:45:56.097152+0000 mgr.smithi049.pzczis (mgr.14180) 1157 : 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-22T22:45:59.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:58 smithi049 bash[14150]: cluster 2024-02-22T22:45:58.098398+0000 mgr.smithi049.pzczis (mgr.14180) 1158 : 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-22T22:45:59.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:58 smithi195 bash[18068]: cluster 2024-02-22T22:45:58.098398+0000 mgr.smithi049.pzczis (mgr.14180) 1158 : 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-22T22:45:59.457 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:45:59.457 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:07.961708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zewcyc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\nDeploy daemon haproxy.nfs.foo.smithi195.zewcyc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.057001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fjacqx on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\nDeploy daemon haproxy.nfs.foo.smithi049.fjacqx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.059482Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.agsiyg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:45:59.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:45:59 smithi049 bash[14150]: audit 2024-02-22T22:45:59.450235+0000 mgr.smithi049.pzczis (mgr.14180) 1159 : audit [DBG] from='client.15420 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:46:00.237 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:46:00.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:45:59 smithi195 bash[18068]: audit 2024-02-22T22:45:59.450235+0000 mgr.smithi049.pzczis (mgr.14180) 1159 : audit [DBG] from='client.15420 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:46:01.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:00 smithi049 bash[14150]: cluster 2024-02-22T22:46:00.099226+0000 mgr.smithi049.pzczis (mgr.14180) 1160 : 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-22T22:46:01.238 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:46:01.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:00 smithi195 bash[18068]: cluster 2024-02-22T22:46:00.099226+0000 mgr.smithi049.pzczis (mgr.14180) 1160 : 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-22T22:46:03.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:03 smithi049 bash[14150]: cluster 2024-02-22T22:46:02.100554+0000 mgr.smithi049.pzczis (mgr.14180) 1161 : 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-22T22:46:03.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:03 smithi195 bash[18068]: cluster 2024-02-22T22:46:02.100554+0000 mgr.smithi049.pzczis (mgr.14180) 1161 : 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-22T22:46:04.535 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:46:04.535 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:07.961708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zewcyc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\nDeploy daemon haproxy.nfs.foo.smithi195.zewcyc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.057001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fjacqx on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\nDeploy daemon haproxy.nfs.foo.smithi049.fjacqx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.059482Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.agsiyg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:46:05.247 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:46:05.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:05 smithi049 bash[14150]: cluster 2024-02-22T22:46:04.102035+0000 mgr.smithi049.pzczis (mgr.14180) 1162 : 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-22T22:46:05.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:05 smithi049 bash[14150]: audit 2024-02-22T22:46:04.524558+0000 mgr.smithi049.pzczis (mgr.14180) 1163 : audit [DBG] from='client.15424 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:46:05.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:05 smithi195 bash[18068]: cluster 2024-02-22T22:46:04.102035+0000 mgr.smithi049.pzczis (mgr.14180) 1162 : 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-22T22:46:05.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:05 smithi195 bash[18068]: audit 2024-02-22T22:46:04.524558+0000 mgr.smithi049.pzczis (mgr.14180) 1163 : audit [DBG] from='client.15424 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:46:06.248 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:46:07.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:07 smithi049 bash[14150]: cluster 2024-02-22T22:46:06.104154+0000 mgr.smithi049.pzczis (mgr.14180) 1164 : 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-22T22:46:07.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:07 smithi195 bash[18068]: cluster 2024-02-22T22:46:06.104154+0000 mgr.smithi049.pzczis (mgr.14180) 1164 : 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-22T22:46:09.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:09 smithi049 bash[14150]: cluster 2024-02-22T22:46:08.105654+0000 mgr.smithi049.pzczis (mgr.14180) 1165 : 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-22T22:46:09.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:09 smithi195 bash[18068]: cluster 2024-02-22T22:46:08.105654+0000 mgr.smithi049.pzczis (mgr.14180) 1165 : 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-22T22:46:09.596 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:46:09.597 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:07.961708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zewcyc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\nDeploy daemon haproxy.nfs.foo.smithi195.zewcyc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.057001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fjacqx on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\nDeploy daemon haproxy.nfs.foo.smithi049.fjacqx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.059482Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.agsiyg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:46:10.395 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:46:10.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:10 smithi049 bash[14150]: audit 2024-02-22T22:46:09.593562+0000 mgr.smithi049.pzczis (mgr.14180) 1166 : audit [DBG] from='client.15428 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:46:10.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:10 smithi195 bash[18068]: audit 2024-02-22T22:46:09.593562+0000 mgr.smithi049.pzczis (mgr.14180) 1166 : audit [DBG] from='client.15428 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:46:11.396 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:46:11.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:11 smithi049 bash[14150]: cluster 2024-02-22T22:46:10.106351+0000 mgr.smithi049.pzczis (mgr.14180) 1167 : 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-22T22:46:11.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:11 smithi195 bash[18068]: cluster 2024-02-22T22:46:10.106351+0000 mgr.smithi049.pzczis (mgr.14180) 1167 : 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-22T22:46:12.527 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:12 smithi049 bash[14150]: audit 2024-02-22T22:46:12.066411+0000 mon.smithi049 (mon.0) 966 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:46:12.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:12 smithi195 bash[18068]: audit 2024-02-22T22:46:12.066411+0000 mon.smithi049 (mon.0) 966 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:46:13.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:13 smithi195 bash[18068]: cluster 2024-02-22T22:46:12.108179+0000 mgr.smithi049.pzczis (mgr.14180) 1168 : 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-22T22:46:13.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:13 smithi195 bash[18068]: audit 2024-02-22T22:46:12.370162+0000 mon.smithi049 (mon.0) 967 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:46:13.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:13 smithi195 bash[18068]: audit 2024-02-22T22:46:12.371596+0000 mon.smithi049 (mon.0) 968 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:46:13.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:13 smithi195 bash[18068]: audit 2024-02-22T22:46:12.378770+0000 mon.smithi049 (mon.0) 969 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:46:13.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:13 smithi195 bash[18068]: cluster 2024-02-22T22:46:12.379650+0000 mgr.smithi049.pzczis (mgr.14180) 1169 : cluster [DBG] pgmap v791: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2024-02-22T22:46:13.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:13 smithi195 bash[18068]: audit 2024-02-22T22:46:12.384825+0000 mon.smithi049 (mon.0) 970 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:46:13.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:13 smithi195 bash[18068]: audit 2024-02-22T22:46:12.400282+0000 mon.smithi049 (mon.0) 971 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:46:13.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:13 smithi195 bash[18068]: cephadm 2024-02-22T22:46:12.404525+0000 mgr.smithi049.pzczis (mgr.14180) 1170 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.axrjah on smithi195 2024-02-22T22:46:13.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:13 smithi049 bash[14150]: cluster 2024-02-22T22:46:12.108179+0000 mgr.smithi049.pzczis (mgr.14180) 1168 : 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-22T22:46:13.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:13 smithi049 bash[14150]: audit 2024-02-22T22:46:12.370162+0000 mon.smithi049 (mon.0) 967 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:46:13.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:13 smithi049 bash[14150]: audit 2024-02-22T22:46:12.371596+0000 mon.smithi049 (mon.0) 968 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:46:13.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:13 smithi049 bash[14150]: audit 2024-02-22T22:46:12.378770+0000 mon.smithi049 (mon.0) 969 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:46:13.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:13 smithi049 bash[14150]: cluster 2024-02-22T22:46:12.379650+0000 mgr.smithi049.pzczis (mgr.14180) 1169 : cluster [DBG] pgmap v791: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2024-02-22T22:46:13.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:13 smithi049 bash[14150]: audit 2024-02-22T22:46:12.384825+0000 mon.smithi049 (mon.0) 970 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:46:13.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:13 smithi049 bash[14150]: audit 2024-02-22T22:46:12.400282+0000 mon.smithi049 (mon.0) 971 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:46:13.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:13 smithi049 bash[14150]: cephadm 2024-02-22T22:46:12.404525+0000 mgr.smithi049.pzczis (mgr.14180) 1170 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.axrjah on smithi195 2024-02-22T22:46:14.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:14 smithi195 bash[18068]: cluster 2024-02-22T22:46:13.375569+0000 mon.smithi049 (mon.0) 972 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:46:14.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:14 smithi195 bash[18068]: cluster 2024-02-22T22:46:13.375631+0000 mon.smithi049 (mon.0) 973 : cluster [INF] Cluster is now healthy 2024-02-22T22:46:14.650 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:46:14.650 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:44:03.443309Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jutyia on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:07.961708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zewcyc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\nDeploy daemon haproxy.nfs.foo.smithi195.zewcyc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.057001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fjacqx on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\nDeploy daemon haproxy.nfs.foo.smithi049.fjacqx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.059482Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.agsiyg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:46:14.682 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:14 smithi049 bash[14150]: cluster 2024-02-22T22:46:13.375569+0000 mon.smithi049 (mon.0) 972 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:46:14.682 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:14 smithi049 bash[14150]: cluster 2024-02-22T22:46:13.375631+0000 mon.smithi049 (mon.0) 973 : cluster [INF] Cluster is now healthy 2024-02-22T22:46:15.382 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:46:15.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:15 smithi195 bash[18068]: cluster 2024-02-22T22:46:14.380523+0000 mgr.smithi049.pzczis (mgr.14180) 1171 : cluster [DBG] pgmap v792: 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-22T22:46:15.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:15 smithi195 bash[18068]: audit 2024-02-22T22:46:14.645824+0000 mgr.smithi049.pzczis (mgr.14180) 1172 : audit [DBG] from='client.15432 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:46:15.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:15 smithi049 bash[14150]: cluster 2024-02-22T22:46:14.380523+0000 mgr.smithi049.pzczis (mgr.14180) 1171 : cluster [DBG] pgmap v792: 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-22T22:46:15.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:15 smithi049 bash[14150]: audit 2024-02-22T22:46:14.645824+0000 mgr.smithi049.pzczis (mgr.14180) 1172 : audit [DBG] from='client.15432 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:46:16.384 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:46:17.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:17 smithi049 bash[14150]: cluster 2024-02-22T22:46:16.382206+0000 mgr.smithi049.pzczis (mgr.14180) 1173 : cluster [DBG] pgmap v793: 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-22T22:46:17.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:17 smithi049 bash[14150]: audit 2024-02-22T22:46:16.793869+0000 mon.smithi049 (mon.0) 974 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.axrjah"}]: dispatch 2024-02-22T22:46:17.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:17 smithi195 bash[18068]: cluster 2024-02-22T22:46:16.382206+0000 mgr.smithi049.pzczis (mgr.14180) 1173 : cluster [DBG] pgmap v793: 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-22T22:46:17.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:17 smithi195 bash[18068]: audit 2024-02-22T22:46:16.793869+0000 mon.smithi049 (mon.0) 974 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.axrjah"}]: dispatch 2024-02-22T22:46:18.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: cephadm 2024-02-22T22:46:16.793010+0000 mgr.smithi049.pzczis (mgr.14180) 1174 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah 2024-02-22T22:46:18.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:46:18.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah 2024-02-22T22:46:18.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah 2024-02-22T22:46:18.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:46:18.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah 2024-02-22T22:46:18.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.axrjah ... 2024-02-22T22:46:18.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:46:18.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:46:18.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:46:18.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:46:18.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:46:18.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:46:18.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:46:18.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:46:18.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:46:18.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:46:18.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah 2024-02-22T22:46:18.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:46:18.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah 2024-02-22T22:46:18.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah 2024-02-22T22:46:18.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:46:18.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah 2024-02-22T22:46:18.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.axrjah ... 2024-02-22T22:46:18.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:46:18.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:46:18.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:46:18.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:46:18.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:46:18.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: cephadm 2024-02-22T22:46:16.793311+0000 mgr.smithi049.pzczis (mgr.14180) 1175 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.axrjah 2024-02-22T22:46:18.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: cephadm 2024-02-22T22:46:16.795052+0000 mgr.smithi049.pzczis (mgr.14180) 1176 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.axrjah on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah 2024-02-22T22:46:18.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:46:18.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah 2024-02-22T22:46:18.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah 2024-02-22T22:46:18.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:46:18.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah 2024-02-22T22:46:18.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.axrjah ... 2024-02-22T22:46:18.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:46:18.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:46:18.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:46:18.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:46:18.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:46:18.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:18 smithi195 bash[18068]: cephadm 2024-02-22T22:46:16.797339+0000 mgr.smithi049.pzczis (mgr.14180) 1177 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.sqseno on smithi049 2024-02-22T22:46:18.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: cephadm 2024-02-22T22:46:16.793010+0000 mgr.smithi049.pzczis (mgr.14180) 1174 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah 2024-02-22T22:46:18.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:46:18.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah 2024-02-22T22:46:18.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah 2024-02-22T22:46:18.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:46:18.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah 2024-02-22T22:46:18.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.axrjah ... 2024-02-22T22:46:18.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:46:18.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:46:18.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:46:18.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:46:18.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:46:18.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:46:18.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:46:18.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:46:18.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:46:18.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:46:18.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah 2024-02-22T22:46:18.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:46:18.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah 2024-02-22T22:46:18.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah 2024-02-22T22:46:18.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:46:18.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah 2024-02-22T22:46:18.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.axrjah ... 2024-02-22T22:46:18.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:46:18.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:46:18.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:46:18.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:46:18.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:46:18.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: cephadm 2024-02-22T22:46:16.793311+0000 mgr.smithi049.pzczis (mgr.14180) 1175 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.axrjah 2024-02-22T22:46:18.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: cephadm 2024-02-22T22:46:16.795052+0000 mgr.smithi049.pzczis (mgr.14180) 1176 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.axrjah on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah 2024-02-22T22:46:18.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:46:18.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah 2024-02-22T22:46:18.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah 2024-02-22T22:46:18.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:46:18.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah 2024-02-22T22:46:18.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.axrjah ... 2024-02-22T22:46:18.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:46:18.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:46:18.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:46:18.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:46:18.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:46:18.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:18 smithi049 bash[14150]: cephadm 2024-02-22T22:46:16.797339+0000 mgr.smithi049.pzczis (mgr.14180) 1177 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.sqseno on smithi049 2024-02-22T22:46:19.673 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:46:19.674 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:45:07.961708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zewcyc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zewcyc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zewcyc\nDeploy daemon haproxy.nfs.foo.smithi195.zewcyc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.057001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fjacqx on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fjacqx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fjacqx\nDeploy daemon haproxy.nfs.foo.smithi049.fjacqx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:45:12.059482Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.agsiyg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:16.794920Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axrjah on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\nDeploy daemon haproxy.nfs.foo.smithi195.axrjah ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:46:19.690 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:19 smithi049 bash[14150]: cluster 2024-02-22T22:46:18.383627+0000 mgr.smithi049.pzczis (mgr.14180) 1178 : cluster [DBG] pgmap v794: 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-22T22:46:19.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:19 smithi195 bash[18068]: cluster 2024-02-22T22:46:18.383627+0000 mgr.smithi049.pzczis (mgr.14180) 1178 : cluster [DBG] pgmap v794: 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-22T22:46:20.389 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:46:20.575 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:20 smithi049 bash[14150]: audit 2024-02-22T22:46:19.663689+0000 mgr.smithi049.pzczis (mgr.14180) 1179 : audit [DBG] from='client.15436 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:46:20.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:20 smithi195 bash[18068]: audit 2024-02-22T22:46:19.663689+0000 mgr.smithi049.pzczis (mgr.14180) 1179 : audit [DBG] from='client.15436 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:46:21.390 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:46:21.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: cluster 2024-02-22T22:46:20.385073+0000 mgr.smithi049.pzczis (mgr.14180) 1180 : cluster [DBG] pgmap v795: 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-22T22:46:21.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: cephadm 2024-02-22T22:46:20.650813+0000 mgr.smithi049.pzczis (mgr.14180) 1181 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno 2024-02-22T22:46:21.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:46:21.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno 2024-02-22T22:46:21.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno 2024-02-22T22:46:21.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:46:21.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno 2024-02-22T22:46:21.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.sqseno ... 2024-02-22T22:46:21.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:46:21.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:46:21.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:46:21.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:46:21.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:46:21.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:46:21.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:46:21.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:46:21.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:46:21.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:46:21.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno 2024-02-22T22:46:21.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:46:21.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno 2024-02-22T22:46:21.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno 2024-02-22T22:46:21.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:46:21.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno 2024-02-22T22:46:21.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.sqseno ... 2024-02-22T22:46:21.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:46:21.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:46:21.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:46:21.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:46:21.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:46:21.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: cephadm 2024-02-22T22:46:20.651307+0000 mgr.smithi049.pzczis (mgr.14180) 1182 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.sqseno 2024-02-22T22:46:21.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: audit 2024-02-22T22:46:20.651869+0000 mon.smithi049 (mon.0) 975 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.sqseno"}]: dispatch 2024-02-22T22:46:21.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: cephadm 2024-02-22T22:46:20.653364+0000 mgr.smithi049.pzczis (mgr.14180) 1183 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.sqseno on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno 2024-02-22T22:46:21.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:46:21.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno 2024-02-22T22:46:21.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno 2024-02-22T22:46:21.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:46:21.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno 2024-02-22T22:46:21.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.sqseno ... 2024-02-22T22:46:21.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:46:21.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:46:21.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:46:21.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:46:21.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:46:21.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: cephadm 2024-02-22T22:46:20.657368+0000 mgr.smithi049.pzczis (mgr.14180) 1184 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.nduiib on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:46:21.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: cephadm 2024-02-22T22:46:20.660483+0000 mgr.smithi049.pzczis (mgr.14180) 1185 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:46:21.695 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:21 smithi049 bash[14150]: cluster 2024-02-22T22:46:20.661966+0000 mgr.smithi049.pzczis (mgr.14180) 1186 : cluster [DBG] pgmap v796: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 119 B/s rd, 0 op/s 2024-02-22T22:46:21.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: cluster 2024-02-22T22:46:20.385073+0000 mgr.smithi049.pzczis (mgr.14180) 1180 : cluster [DBG] pgmap v795: 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-22T22:46:21.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: cephadm 2024-02-22T22:46:20.650813+0000 mgr.smithi049.pzczis (mgr.14180) 1181 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno 2024-02-22T22:46:21.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:46:21.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno 2024-02-22T22:46:21.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno 2024-02-22T22:46:21.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:46:21.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno 2024-02-22T22:46:21.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.sqseno ... 2024-02-22T22:46:21.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:46:21.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:46:21.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:46:21.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:46:21.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:46:21.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:46:21.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:46:21.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:46:21.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:46:21.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:46:21.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno 2024-02-22T22:46:21.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:46:21.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno 2024-02-22T22:46:21.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno 2024-02-22T22:46:21.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:46:21.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno 2024-02-22T22:46:21.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.sqseno ... 2024-02-22T22:46:21.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:46:21.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:46:21.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:46:21.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:46:21.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:46:21.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: cephadm 2024-02-22T22:46:20.651307+0000 mgr.smithi049.pzczis (mgr.14180) 1182 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.sqseno 2024-02-22T22:46:21.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: audit 2024-02-22T22:46:20.651869+0000 mon.smithi049 (mon.0) 975 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.sqseno"}]: dispatch 2024-02-22T22:46:21.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: cephadm 2024-02-22T22:46:20.653364+0000 mgr.smithi049.pzczis (mgr.14180) 1183 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.sqseno on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno 2024-02-22T22:46:21.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:46:21.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno 2024-02-22T22:46:21.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno 2024-02-22T22:46:21.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:46:21.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno 2024-02-22T22:46:21.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.sqseno ... 2024-02-22T22:46:21.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:46:21.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:46:21.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:46:21.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:46:21.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:46:21.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: cephadm 2024-02-22T22:46:20.657368+0000 mgr.smithi049.pzczis (mgr.14180) 1184 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.nduiib on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:46:21.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: cephadm 2024-02-22T22:46:20.660483+0000 mgr.smithi049.pzczis (mgr.14180) 1185 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:46:21.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:21 smithi195 bash[18068]: cluster 2024-02-22T22:46:20.661966+0000 mgr.smithi049.pzczis (mgr.14180) 1186 : cluster [DBG] pgmap v796: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 119 B/s rd, 0 op/s 2024-02-22T22:46:22.762 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:22 smithi049 bash[14150]: cluster 2024-02-22T22:46:21.460206+0000 mon.smithi049 (mon.0) 976 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:46:22.762 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:22 smithi049 bash[14150]: audit 2024-02-22T22:46:21.933818+0000 mon.smithi049 (mon.0) 977 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:46:22.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:22 smithi195 bash[18068]: cluster 2024-02-22T22:46:21.460206+0000 mon.smithi049 (mon.0) 976 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:46:22.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:22 smithi195 bash[18068]: audit 2024-02-22T22:46:21.933818+0000 mon.smithi049 (mon.0) 977 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:46:23.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:23 smithi195 bash[18068]: cluster 2024-02-22T22:46:22.663750+0000 mgr.smithi049.pzczis (mgr.14180) 1187 : cluster [DBG] pgmap v797: 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-22T22:46:23.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:23 smithi049 bash[14150]: cluster 2024-02-22T22:46:22.663750+0000 mgr.smithi049.pzczis (mgr.14180) 1187 : cluster [DBG] pgmap v797: 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-22T22:46:24.883 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:46:24.883 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:16.794920Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axrjah on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\nDeploy daemon haproxy.nfs.foo.smithi195.axrjah ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:46:20.653087Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.sqseno on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno\nDeploy daemon haproxy.nfs.foo.smithi049.sqseno ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:46:20.657174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.nduiib on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:20.660305Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:46:25.724 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:46:26.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:25 smithi195 bash[18068]: cluster 2024-02-22T22:46:24.664924+0000 mgr.smithi049.pzczis (mgr.14180) 1188 : 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-22T22:46:26.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:25 smithi049 bash[14150]: cluster 2024-02-22T22:46:24.664924+0000 mgr.smithi049.pzczis (mgr.14180) 1188 : 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-22T22:46:26.725 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:46:26.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:26 smithi049 bash[14150]: audit 2024-02-22T22:46:24.875298+0000 mgr.smithi049.pzczis (mgr.14180) 1189 : audit [DBG] from='client.15440 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:46:27.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:26 smithi195 bash[18068]: audit 2024-02-22T22:46:24.875298+0000 mgr.smithi049.pzczis (mgr.14180) 1189 : audit [DBG] from='client.15440 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:46:28.024 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:27 smithi049 bash[14150]: cluster 2024-02-22T22:46:26.666931+0000 mgr.smithi049.pzczis (mgr.14180) 1190 : 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-22T22:46:28.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:27 smithi195 bash[18068]: cluster 2024-02-22T22:46:26.666931+0000 mgr.smithi049.pzczis (mgr.14180) 1190 : 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-22T22:46:29.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:29 smithi195 bash[18068]: cluster 2024-02-22T22:46:28.668486+0000 mgr.smithi049.pzczis (mgr.14180) 1191 : 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-22T22:46:29.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:29 smithi049 bash[14150]: cluster 2024-02-22T22:46:28.668486+0000 mgr.smithi049.pzczis (mgr.14180) 1191 : 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-22T22:46:29.777 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:46:29.778 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:16.794920Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axrjah on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\nDeploy daemon haproxy.nfs.foo.smithi195.axrjah ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:46:20.653087Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.sqseno on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno\nDeploy daemon haproxy.nfs.foo.smithi049.sqseno ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:46:20.657174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.nduiib on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:20.660305Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:46:30.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:30 smithi049 bash[14150]: audit 2024-02-22T22:46:29.768381+0000 mgr.smithi049.pzczis (mgr.14180) 1192 : audit [DBG] from='client.15444 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:46:30.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:30 smithi195 bash[18068]: audit 2024-02-22T22:46:29.768381+0000 mgr.smithi049.pzczis (mgr.14180) 1192 : audit [DBG] from='client.15444 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:46:30.595 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:46:31.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:31 smithi195 bash[18068]: cluster 2024-02-22T22:46:30.670299+0000 mgr.smithi049.pzczis (mgr.14180) 1193 : 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-22T22:46:31.596 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:46:31.609 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:31 smithi049 bash[14150]: cluster 2024-02-22T22:46:30.670299+0000 mgr.smithi049.pzczis (mgr.14180) 1193 : 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-22T22:46:34.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:33 smithi195 bash[18068]: cluster 2024-02-22T22:46:32.671998+0000 mgr.smithi049.pzczis (mgr.14180) 1194 : cluster [DBG] pgmap v802: 225 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-22T22:46:34.084 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:33 smithi049 bash[14150]: cluster 2024-02-22T22:46:32.671998+0000 mgr.smithi049.pzczis (mgr.14180) 1194 : cluster [DBG] pgmap v802: 225 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-22T22:46:34.507 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:46:34.507 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:16.794920Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axrjah on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\nDeploy daemon haproxy.nfs.foo.smithi195.axrjah ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:46:20.653087Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.sqseno on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno\nDeploy daemon haproxy.nfs.foo.smithi049.sqseno ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:46:20.657174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.nduiib on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:20.660305Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:46:35.254 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:46:36.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:35 smithi195 bash[18068]: audit 2024-02-22T22:46:34.499169+0000 mgr.smithi049.pzczis (mgr.14180) 1195 : audit [DBG] from='client.15448 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:46:36.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:35 smithi195 bash[18068]: cluster 2024-02-22T22:46:34.673059+0000 mgr.smithi049.pzczis (mgr.14180) 1196 : cluster [DBG] pgmap v803: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:46:36.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:35 smithi049 bash[14150]: audit 2024-02-22T22:46:34.499169+0000 mgr.smithi049.pzczis (mgr.14180) 1195 : audit [DBG] from='client.15448 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:46:36.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:35 smithi049 bash[14150]: cluster 2024-02-22T22:46:34.673059+0000 mgr.smithi049.pzczis (mgr.14180) 1196 : cluster [DBG] pgmap v803: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:46:36.254 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:46:37.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:37 smithi049 bash[14150]: cluster 2024-02-22T22:46:36.674326+0000 mgr.smithi049.pzczis (mgr.14180) 1197 : cluster [DBG] pgmap v804: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:46:38.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:37 smithi195 bash[18068]: cluster 2024-02-22T22:46:36.674326+0000 mgr.smithi049.pzczis (mgr.14180) 1197 : cluster [DBG] pgmap v804: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:46:39.495 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:46:39.495 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:16.794920Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axrjah on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\nDeploy daemon haproxy.nfs.foo.smithi195.axrjah ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:46:20.653087Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.sqseno on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno\nDeploy daemon haproxy.nfs.foo.smithi049.sqseno ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:46:20.657174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.nduiib on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:20.660305Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:46:39.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:39 smithi049 bash[14150]: cluster 2024-02-22T22:46:38.675808+0000 mgr.smithi049.pzczis (mgr.14180) 1198 : cluster [DBG] pgmap v805: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:46:40.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:39 smithi195 bash[18068]: cluster 2024-02-22T22:46:38.675808+0000 mgr.smithi049.pzczis (mgr.14180) 1198 : cluster [DBG] pgmap v805: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:46:40.224 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:46:41.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:40 smithi195 bash[18068]: audit 2024-02-22T22:46:39.491702+0000 mgr.smithi049.pzczis (mgr.14180) 1199 : audit [DBG] from='client.15452 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:46:41.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:40 smithi049 bash[14150]: audit 2024-02-22T22:46:39.491702+0000 mgr.smithi049.pzczis (mgr.14180) 1199 : audit [DBG] from='client.15452 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:46:41.225 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:46:42.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:41 smithi195 bash[18068]: cluster 2024-02-22T22:46:40.677614+0000 mgr.smithi049.pzczis (mgr.14180) 1200 : cluster [DBG] pgmap v806: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:46:42.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:41 smithi049 bash[14150]: cluster 2024-02-22T22:46:40.677614+0000 mgr.smithi049.pzczis (mgr.14180) 1200 : cluster [DBG] pgmap v806: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:46:44.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:43 smithi195 bash[18068]: cluster 2024-02-22T22:46:42.679392+0000 mgr.smithi049.pzczis (mgr.14180) 1201 : cluster [DBG] pgmap v807: 225 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-22T22:46:44.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:43 smithi049 bash[14150]: cluster 2024-02-22T22:46:42.679392+0000 mgr.smithi049.pzczis (mgr.14180) 1201 : cluster [DBG] pgmap v807: 225 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-22T22:46:44.340 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:46:44.340 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:16.794920Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axrjah on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\nDeploy daemon haproxy.nfs.foo.smithi195.axrjah ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:46:20.653087Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.sqseno on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno\nDeploy daemon haproxy.nfs.foo.smithi049.sqseno ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:46:20.657174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.nduiib on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:20.660305Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:46:45.101 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:46:46.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:45 smithi195 bash[18068]: audit 2024-02-22T22:46:44.332452+0000 mgr.smithi049.pzczis (mgr.14180) 1202 : audit [DBG] from='client.15456 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:46:46.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:45 smithi195 bash[18068]: cluster 2024-02-22T22:46:44.680312+0000 mgr.smithi049.pzczis (mgr.14180) 1203 : cluster [DBG] pgmap v808: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:46:46.102 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:46:46.114 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:45 smithi049 bash[14150]: audit 2024-02-22T22:46:44.332452+0000 mgr.smithi049.pzczis (mgr.14180) 1202 : audit [DBG] from='client.15456 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:46:46.114 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:45 smithi049 bash[14150]: cluster 2024-02-22T22:46:44.680312+0000 mgr.smithi049.pzczis (mgr.14180) 1203 : cluster [DBG] pgmap v808: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:46:47.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:47 smithi049 bash[14150]: cluster 2024-02-22T22:46:46.682310+0000 mgr.smithi049.pzczis (mgr.14180) 1204 : 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-22T22:46:48.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:47 smithi195 bash[18068]: cluster 2024-02-22T22:46:46.682310+0000 mgr.smithi049.pzczis (mgr.14180) 1204 : 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-22T22:46:49.414 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:46:49.414 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:16.794920Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axrjah on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\nDeploy daemon haproxy.nfs.foo.smithi195.axrjah ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:46:20.653087Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.sqseno on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno\nDeploy daemon haproxy.nfs.foo.smithi049.sqseno ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:46:20.657174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.nduiib on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:20.660305Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:46:49.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:49 smithi049 bash[14150]: cluster 2024-02-22T22:46:48.683956+0000 mgr.smithi049.pzczis (mgr.14180) 1205 : 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-22T22:46:50.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:49 smithi195 bash[18068]: cluster 2024-02-22T22:46:48.683956+0000 mgr.smithi049.pzczis (mgr.14180) 1205 : 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-22T22:46:50.159 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:46:51.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:50 smithi195 bash[18068]: audit 2024-02-22T22:46:49.405444+0000 mgr.smithi049.pzczis (mgr.14180) 1206 : audit [DBG] from='client.15460 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:46:51.160 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:46:51.172 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:50 smithi049 bash[14150]: audit 2024-02-22T22:46:49.405444+0000 mgr.smithi049.pzczis (mgr.14180) 1206 : audit [DBG] from='client.15460 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:46:52.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:51 smithi195 bash[18068]: cluster 2024-02-22T22:46:50.685775+0000 mgr.smithi049.pzczis (mgr.14180) 1207 : 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-22T22:46:52.187 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:51 smithi049 bash[14150]: cluster 2024-02-22T22:46:50.685775+0000 mgr.smithi049.pzczis (mgr.14180) 1207 : 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-22T22:46:53.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:52 smithi049 bash[14150]: cluster 2024-02-22T22:46:52.689410+0000 mgr.smithi049.pzczis (mgr.14180) 1208 : cluster [DBG] pgmap v812: 225 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-22T22:46:53.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:52 smithi195 bash[18068]: cluster 2024-02-22T22:46:52.689410+0000 mgr.smithi049.pzczis (mgr.14180) 1208 : cluster [DBG] pgmap v812: 225 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-22T22:46:54.350 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:46:54.350 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:16.794920Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axrjah on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\nDeploy daemon haproxy.nfs.foo.smithi195.axrjah ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:46:20.653087Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.sqseno on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno\nDeploy daemon haproxy.nfs.foo.smithi049.sqseno ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:46:20.657174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.nduiib on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:20.660305Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:46:55.031 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:46:56.032 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:46:56.043 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:55 smithi049 bash[14150]: audit 2024-02-22T22:46:54.343275+0000 mgr.smithi049.pzczis (mgr.14180) 1209 : audit [DBG] from='client.15464 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:46:56.044 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:55 smithi049 bash[14150]: cluster 2024-02-22T22:46:54.690572+0000 mgr.smithi049.pzczis (mgr.14180) 1210 : cluster [DBG] pgmap v813: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:46:56.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:55 smithi195 bash[18068]: audit 2024-02-22T22:46:54.343275+0000 mgr.smithi049.pzczis (mgr.14180) 1209 : audit [DBG] from='client.15464 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:46:56.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:55 smithi195 bash[18068]: cluster 2024-02-22T22:46:54.690572+0000 mgr.smithi049.pzczis (mgr.14180) 1210 : cluster [DBG] pgmap v813: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:46:57.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:57 smithi049 bash[14150]: cluster 2024-02-22T22:46:56.692674+0000 mgr.smithi049.pzczis (mgr.14180) 1211 : 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-22T22:46:58.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:57 smithi195 bash[18068]: cluster 2024-02-22T22:46:56.692674+0000 mgr.smithi049.pzczis (mgr.14180) 1211 : 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-22T22:46:59.383 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:46:59.383 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:16.794920Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axrjah on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\nDeploy daemon haproxy.nfs.foo.smithi195.axrjah ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:46:20.653087Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.sqseno on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno\nDeploy daemon haproxy.nfs.foo.smithi049.sqseno ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:46:20.657174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.nduiib on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:20.660305Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:46:59.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:46:59 smithi049 bash[14150]: cluster 2024-02-22T22:46:58.693697+0000 mgr.smithi049.pzczis (mgr.14180) 1212 : 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-22T22:47:00.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:46:59 smithi195 bash[18068]: cluster 2024-02-22T22:46:58.693697+0000 mgr.smithi049.pzczis (mgr.14180) 1212 : 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-22T22:47:00.121 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:47:01.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:00 smithi195 bash[18068]: audit 2024-02-22T22:46:59.374347+0000 mgr.smithi049.pzczis (mgr.14180) 1213 : audit [DBG] from='client.15468 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:47:01.123 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:47:01.136 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:00 smithi049 bash[14150]: audit 2024-02-22T22:46:59.374347+0000 mgr.smithi049.pzczis (mgr.14180) 1213 : audit [DBG] from='client.15468 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:47:02.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:01 smithi195 bash[18068]: cluster 2024-02-22T22:47:00.695455+0000 mgr.smithi049.pzczis (mgr.14180) 1214 : 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-22T22:47:02.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:01 smithi049 bash[14150]: cluster 2024-02-22T22:47:00.695455+0000 mgr.smithi049.pzczis (mgr.14180) 1214 : 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-22T22:47:04.035 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:03 smithi049 bash[14150]: cluster 2024-02-22T22:47:02.696832+0000 mgr.smithi049.pzczis (mgr.14180) 1215 : cluster [DBG] pgmap v817: 225 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-22T22:47:04.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:03 smithi195 bash[18068]: cluster 2024-02-22T22:47:02.696832+0000 mgr.smithi049.pzczis (mgr.14180) 1215 : cluster [DBG] pgmap v817: 225 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-22T22:47:04.423 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:47:04.423 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:16.794920Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axrjah on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\nDeploy daemon haproxy.nfs.foo.smithi195.axrjah ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:46:20.653087Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.sqseno on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno\nDeploy daemon haproxy.nfs.foo.smithi049.sqseno ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:46:20.657174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.nduiib on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:20.660305Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:47:05.252 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:47:06.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:05 smithi195 bash[18068]: audit 2024-02-22T22:47:04.414545+0000 mgr.smithi049.pzczis (mgr.14180) 1216 : audit [DBG] from='client.15472 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:47:06.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:05 smithi195 bash[18068]: cluster 2024-02-22T22:47:04.697717+0000 mgr.smithi049.pzczis (mgr.14180) 1217 : cluster [DBG] pgmap v818: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:47:06.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:05 smithi049 bash[14150]: audit 2024-02-22T22:47:04.414545+0000 mgr.smithi049.pzczis (mgr.14180) 1216 : audit [DBG] from='client.15472 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:47:06.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:05 smithi049 bash[14150]: cluster 2024-02-22T22:47:04.697717+0000 mgr.smithi049.pzczis (mgr.14180) 1217 : cluster [DBG] pgmap v818: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:47:06.253 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:47:08.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:07 smithi195 bash[18068]: cluster 2024-02-22T22:47:06.700066+0000 mgr.smithi049.pzczis (mgr.14180) 1218 : 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-22T22:47:08.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:07 smithi049 bash[14150]: cluster 2024-02-22T22:47:06.700066+0000 mgr.smithi049.pzczis (mgr.14180) 1218 : 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-22T22:47:09.574 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:47:09.575 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:16.794920Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axrjah on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\nDeploy daemon haproxy.nfs.foo.smithi195.axrjah ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:46:20.653087Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.sqseno on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno\nDeploy daemon haproxy.nfs.foo.smithi049.sqseno ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:46:20.657174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.nduiib on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:20.660305Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:47:09.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:09 smithi049 bash[14150]: cluster 2024-02-22T22:47:08.701545+0000 mgr.smithi049.pzczis (mgr.14180) 1219 : 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-22T22:47:10.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:09 smithi195 bash[18068]: cluster 2024-02-22T22:47:08.701545+0000 mgr.smithi049.pzczis (mgr.14180) 1219 : 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-22T22:47:10.377 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:47:11.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:10 smithi195 bash[18068]: audit 2024-02-22T22:47:09.566099+0000 mgr.smithi049.pzczis (mgr.14180) 1220 : audit [DBG] from='client.15476 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:47:11.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:10 smithi049 bash[14150]: audit 2024-02-22T22:47:09.566099+0000 mgr.smithi049.pzczis (mgr.14180) 1220 : audit [DBG] from='client.15476 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:47:11.377 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:47:11.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:11 smithi049 bash[14150]: cluster 2024-02-22T22:47:10.703484+0000 mgr.smithi049.pzczis (mgr.14180) 1221 : 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-22T22:47:12.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:11 smithi195 bash[18068]: cluster 2024-02-22T22:47:10.703484+0000 mgr.smithi049.pzczis (mgr.14180) 1221 : 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-22T22:47:12.891 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:12 smithi049 bash[14150]: cluster 2024-02-22T22:47:12.705465+0000 mgr.smithi049.pzczis (mgr.14180) 1222 : cluster [DBG] pgmap v822: 225 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-22T22:47:13.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:12 smithi195 bash[18068]: cluster 2024-02-22T22:47:12.705465+0000 mgr.smithi049.pzczis (mgr.14180) 1222 : cluster [DBG] pgmap v822: 225 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-22T22:47:14.679 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:47:14.679 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:16.794920Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axrjah on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\nDeploy daemon haproxy.nfs.foo.smithi195.axrjah ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:46:20.653087Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.sqseno on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno\nDeploy daemon haproxy.nfs.foo.smithi049.sqseno ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:46:20.657174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.nduiib on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:20.660305Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:47:15.438 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:47:16.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:15 smithi195 bash[18068]: audit 2024-02-22T22:47:14.669577+0000 mgr.smithi049.pzczis (mgr.14180) 1223 : audit [DBG] from='client.15480 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:47:16.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:15 smithi195 bash[18068]: cluster 2024-02-22T22:47:14.706123+0000 mgr.smithi049.pzczis (mgr.14180) 1224 : cluster [DBG] pgmap v823: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:47:16.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:15 smithi049 bash[14150]: audit 2024-02-22T22:47:14.669577+0000 mgr.smithi049.pzczis (mgr.14180) 1223 : audit [DBG] from='client.15480 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:47:16.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:15 smithi049 bash[14150]: cluster 2024-02-22T22:47:14.706123+0000 mgr.smithi049.pzczis (mgr.14180) 1224 : cluster [DBG] pgmap v823: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:47:16.440 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:47:17.807 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:17 smithi049 bash[14150]: cluster 2024-02-22T22:47:16.708210+0000 mgr.smithi049.pzczis (mgr.14180) 1225 : cluster [DBG] pgmap v824: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:47:18.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:17 smithi195 bash[18068]: cluster 2024-02-22T22:47:16.708210+0000 mgr.smithi049.pzczis (mgr.14180) 1225 : cluster [DBG] pgmap v824: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:47:19.589 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:47:19.590 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:16.794920Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axrjah on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\nDeploy daemon haproxy.nfs.foo.smithi195.axrjah ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:46:20.653087Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.sqseno on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno\nDeploy daemon haproxy.nfs.foo.smithi049.sqseno ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:46:20.657174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.nduiib on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:20.660305Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:47:19.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:19 smithi049 bash[14150]: cluster 2024-02-22T22:47:18.709867+0000 mgr.smithi049.pzczis (mgr.14180) 1226 : cluster [DBG] pgmap v825: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:47:20.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:19 smithi195 bash[18068]: cluster 2024-02-22T22:47:18.709867+0000 mgr.smithi049.pzczis (mgr.14180) 1226 : cluster [DBG] pgmap v825: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:47:20.362 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:47:21.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:20 smithi195 bash[18068]: audit 2024-02-22T22:47:19.579854+0000 mgr.smithi049.pzczis (mgr.14180) 1227 : audit [DBG] from='client.15484 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:47:21.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:20 smithi195 bash[18068]: audit 2024-02-22T22:47:20.664126+0000 mon.smithi049 (mon.0) 978 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:47:21.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:20 smithi049 bash[14150]: audit 2024-02-22T22:47:19.579854+0000 mgr.smithi049.pzczis (mgr.14180) 1227 : audit [DBG] from='client.15484 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:47:21.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:20 smithi049 bash[14150]: audit 2024-02-22T22:47:20.664126+0000 mon.smithi049 (mon.0) 978 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:47:21.362 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:47:21.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:21 smithi049 bash[14150]: cluster 2024-02-22T22:47:20.711655+0000 mgr.smithi049.pzczis (mgr.14180) 1228 : cluster [DBG] pgmap v826: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:47:21.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:21 smithi049 bash[14150]: audit 2024-02-22T22:47:20.985962+0000 mon.smithi049 (mon.0) 979 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:47:21.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:21 smithi049 bash[14150]: audit 2024-02-22T22:47:20.987354+0000 mon.smithi049 (mon.0) 980 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:47:21.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:21 smithi049 bash[14150]: audit 2024-02-22T22:47:20.997132+0000 mon.smithi049 (mon.0) 981 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:47:21.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:21 smithi049 bash[14150]: audit 2024-02-22T22:47:21.004588+0000 mon.smithi049 (mon.0) 982 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:47:21.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:21 smithi049 bash[14150]: audit 2024-02-22T22:47:21.015564+0000 mon.smithi049 (mon.0) 983 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:47:22.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:21 smithi195 bash[18068]: cluster 2024-02-22T22:47:20.711655+0000 mgr.smithi049.pzczis (mgr.14180) 1228 : cluster [DBG] pgmap v826: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:47:22.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:21 smithi195 bash[18068]: audit 2024-02-22T22:47:20.985962+0000 mon.smithi049 (mon.0) 979 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:47:22.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:21 smithi195 bash[18068]: audit 2024-02-22T22:47:20.987354+0000 mon.smithi049 (mon.0) 980 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:47:22.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:21 smithi195 bash[18068]: audit 2024-02-22T22:47:20.997132+0000 mon.smithi049 (mon.0) 981 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:47:22.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:21 smithi195 bash[18068]: audit 2024-02-22T22:47:21.004588+0000 mon.smithi049 (mon.0) 982 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:47:22.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:21 smithi195 bash[18068]: audit 2024-02-22T22:47:21.015564+0000 mon.smithi049 (mon.0) 983 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:47:22.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:22 smithi049 bash[14150]: cluster 2024-02-22T22:47:20.998189+0000 mgr.smithi049.pzczis (mgr.14180) 1229 : cluster [DBG] pgmap v827: 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-22T22:47:22.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:22 smithi049 bash[14150]: cephadm 2024-02-22T22:47:21.020225+0000 mgr.smithi049.pzczis (mgr.14180) 1230 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.zdzrdk on smithi195 2024-02-22T22:47:22.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:22 smithi049 bash[14150]: cluster 2024-02-22T22:47:21.992881+0000 mon.smithi049 (mon.0) 984 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:47:22.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:22 smithi049 bash[14150]: cluster 2024-02-22T22:47:21.992923+0000 mon.smithi049 (mon.0) 985 : cluster [INF] Cluster is now healthy 2024-02-22T22:47:22.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:22 smithi049 bash[14150]: audit 2024-02-22T22:47:22.674282+0000 mon.smithi049 (mon.0) 986 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:47:23.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:22 smithi195 bash[18068]: cluster 2024-02-22T22:47:20.998189+0000 mgr.smithi049.pzczis (mgr.14180) 1229 : cluster [DBG] pgmap v827: 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-22T22:47:23.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:22 smithi195 bash[18068]: cephadm 2024-02-22T22:47:21.020225+0000 mgr.smithi049.pzczis (mgr.14180) 1230 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.zdzrdk on smithi195 2024-02-22T22:47:23.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:22 smithi195 bash[18068]: cluster 2024-02-22T22:47:21.992881+0000 mon.smithi049 (mon.0) 984 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:47:23.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:22 smithi195 bash[18068]: cluster 2024-02-22T22:47:21.992923+0000 mon.smithi049 (mon.0) 985 : cluster [INF] Cluster is now healthy 2024-02-22T22:47:23.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:22 smithi195 bash[18068]: audit 2024-02-22T22:47:22.674282+0000 mon.smithi049 (mon.0) 986 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:47:24.634 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:47:24.634 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:45:12.061668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ayxywr on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:16.794920Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axrjah on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-axrjah\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.axrjah\nDeploy daemon haproxy.nfs.foo.smithi195.axrjah ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:46:20.653087Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.sqseno on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-sqseno\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.sqseno\nDeploy daemon haproxy.nfs.foo.smithi049.sqseno ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:46:20.657174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.nduiib on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:46:20.660305Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:47:24.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:24 smithi049 bash[14150]: cluster 2024-02-22T22:47:22.999259+0000 mgr.smithi049.pzczis (mgr.14180) 1231 : cluster [DBG] pgmap v828: 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-22T22:47:25.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:24 smithi195 bash[18068]: cluster 2024-02-22T22:47:22.999259+0000 mgr.smithi049.pzczis (mgr.14180) 1231 : cluster [DBG] pgmap v828: 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-22T22:47:25.458 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:47:26.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:25 smithi049 bash[14150]: audit 2024-02-22T22:47:24.625446+0000 mgr.smithi049.pzczis (mgr.14180) 1232 : audit [DBG] from='client.15488 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:47:26.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:25 smithi049 bash[14150]: audit 2024-02-22T22:47:25.033720+0000 mon.smithi049 (mon.0) 987 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.zdzrdk"}]: dispatch 2024-02-22T22:47:26.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:25 smithi195 bash[18068]: audit 2024-02-22T22:47:24.625446+0000 mgr.smithi049.pzczis (mgr.14180) 1232 : audit [DBG] from='client.15488 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:47:26.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:25 smithi195 bash[18068]: audit 2024-02-22T22:47:25.033720+0000 mon.smithi049 (mon.0) 987 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.zdzrdk"}]: dispatch 2024-02-22T22:47:26.459 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:47:26.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: cluster 2024-02-22T22:47:24.999938+0000 mgr.smithi049.pzczis (mgr.14180) 1233 : cluster [DBG] pgmap v829: 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-22T22:47:26.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: cephadm 2024-02-22T22:47:25.032777+0000 mgr.smithi049.pzczis (mgr.14180) 1234 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk 2024-02-22T22:47:26.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:47:26.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk 2024-02-22T22:47:26.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk 2024-02-22T22:47:26.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:47:26.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk 2024-02-22T22:47:26.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.zdzrdk ... 2024-02-22T22:47:26.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:47:26.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:47:26.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:47:26.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:47:26.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:47:26.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:47:26.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:47:26.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:47:26.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:47:26.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:47:26.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk 2024-02-22T22:47:26.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:47:26.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk 2024-02-22T22:47:26.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk 2024-02-22T22:47:26.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:47:26.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk 2024-02-22T22:47:26.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.zdzrdk ... 2024-02-22T22:47:26.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:47:26.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:47:26.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:47:26.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:47:26.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:47:26.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: cephadm 2024-02-22T22:47:25.033213+0000 mgr.smithi049.pzczis (mgr.14180) 1235 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.zdzrdk 2024-02-22T22:47:26.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: cephadm 2024-02-22T22:47:25.035130+0000 mgr.smithi049.pzczis (mgr.14180) 1236 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.zdzrdk on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk 2024-02-22T22:47:26.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:47:26.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk 2024-02-22T22:47:26.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk 2024-02-22T22:47:26.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:47:26.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk 2024-02-22T22:47:26.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.zdzrdk ... 2024-02-22T22:47:26.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:47:26.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:47:26.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:47:26.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:47:26.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:47:26.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:26 smithi049 bash[14150]: cephadm 2024-02-22T22:47:25.039832+0000 mgr.smithi049.pzczis (mgr.14180) 1237 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.kpvgso on smithi049 2024-02-22T22:47:27.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: cluster 2024-02-22T22:47:24.999938+0000 mgr.smithi049.pzczis (mgr.14180) 1233 : cluster [DBG] pgmap v829: 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-22T22:47:27.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: cephadm 2024-02-22T22:47:25.032777+0000 mgr.smithi049.pzczis (mgr.14180) 1234 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk 2024-02-22T22:47:27.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:47:27.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk 2024-02-22T22:47:27.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk 2024-02-22T22:47:27.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:47:27.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk 2024-02-22T22:47:27.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.zdzrdk ... 2024-02-22T22:47:27.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:47:27.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:47:27.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:47:27.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:47:27.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:47:27.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:47:27.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:47:27.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:47:27.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:47:27.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:47:27.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk 2024-02-22T22:47:27.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:47:27.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk 2024-02-22T22:47:27.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk 2024-02-22T22:47:27.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:47:27.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk 2024-02-22T22:47:27.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.zdzrdk ... 2024-02-22T22:47:27.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:47:27.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:47:27.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:47:27.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:47:27.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:47:27.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: cephadm 2024-02-22T22:47:25.033213+0000 mgr.smithi049.pzczis (mgr.14180) 1235 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.zdzrdk 2024-02-22T22:47:27.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: cephadm 2024-02-22T22:47:25.035130+0000 mgr.smithi049.pzczis (mgr.14180) 1236 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.zdzrdk on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk 2024-02-22T22:47:27.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:47:27.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk 2024-02-22T22:47:27.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk 2024-02-22T22:47:27.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:47:27.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk 2024-02-22T22:47:27.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.zdzrdk ... 2024-02-22T22:47:27.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:47:27.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:47:27.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:47:27.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:47:27.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:47:27.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:26 smithi195 bash[18068]: cephadm 2024-02-22T22:47:25.039832+0000 mgr.smithi049.pzczis (mgr.14180) 1237 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.kpvgso on smithi049 2024-02-22T22:47:28.040 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:27 smithi049 bash[14150]: cluster 2024-02-22T22:47:27.000784+0000 mgr.smithi049.pzczis (mgr.14180) 1238 : cluster [DBG] pgmap v830: 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-22T22:47:28.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:27 smithi195 bash[18068]: cluster 2024-02-22T22:47:27.000784+0000 mgr.smithi049.pzczis (mgr.14180) 1238 : cluster [DBG] pgmap v830: 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-22T22:47:30.021 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:47:30.021 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:46:20.660305Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:25.034884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zdzrdk on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\nDeploy daemon haproxy.nfs.foo.smithi195.zdzrdk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.332509Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.kpvgso on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\nDeploy daemon haproxy.nfs.foo.smithi049.kpvgso ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.334855Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.gmjslg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:47:30.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: cluster 2024-02-22T22:47:29.002204+0000 mgr.smithi049.pzczis (mgr.14180) 1239 : cluster [DBG] pgmap v831: 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-22T22:47:30.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: cephadm 2024-02-22T22:47:29.330423+0000 mgr.smithi049.pzczis (mgr.14180) 1240 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso 2024-02-22T22:47:30.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:47:30.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso 2024-02-22T22:47:30.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso 2024-02-22T22:47:30.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:47:30.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso 2024-02-22T22:47:30.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.kpvgso ... 2024-02-22T22:47:30.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:47:30.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:47:30.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:47:30.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:47:30.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:47:30.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:47:30.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:47:30.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:47:30.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:47:30.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:47:30.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso 2024-02-22T22:47:30.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:47:30.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso 2024-02-22T22:47:30.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso 2024-02-22T22:47:30.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:47:30.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso 2024-02-22T22:47:30.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.kpvgso ... 2024-02-22T22:47:30.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:47:30.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:47:30.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:47:30.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:47:30.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:47:30.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: cephadm 2024-02-22T22:47:29.330718+0000 mgr.smithi049.pzczis (mgr.14180) 1241 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.kpvgso 2024-02-22T22:47:30.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: audit 2024-02-22T22:47:29.331320+0000 mon.smithi049 (mon.0) 988 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.kpvgso"}]: dispatch 2024-02-22T22:47:30.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: cephadm 2024-02-22T22:47:29.332676+0000 mgr.smithi049.pzczis (mgr.14180) 1242 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.kpvgso on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso 2024-02-22T22:47:30.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:47:30.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso 2024-02-22T22:47:30.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso 2024-02-22T22:47:30.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:47:30.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso 2024-02-22T22:47:30.443 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.kpvgso ... 2024-02-22T22:47:30.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:47:30.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:47:30.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:47:30.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:47:30.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:47:30.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: cephadm 2024-02-22T22:47:29.334961+0000 mgr.smithi049.pzczis (mgr.14180) 1243 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.gmjslg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:47:30.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: cephadm 2024-02-22T22:47:29.336735+0000 mgr.smithi049.pzczis (mgr.14180) 1244 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:47:30.444 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:30 smithi049 bash[14150]: cluster 2024-02-22T22:47:29.337651+0000 mgr.smithi049.pzczis (mgr.14180) 1245 : cluster [DBG] pgmap v832: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 118 B/s rd, 0 op/s 2024-02-22T22:47:30.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: cluster 2024-02-22T22:47:29.002204+0000 mgr.smithi049.pzczis (mgr.14180) 1239 : cluster [DBG] pgmap v831: 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-22T22:47:30.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: cephadm 2024-02-22T22:47:29.330423+0000 mgr.smithi049.pzczis (mgr.14180) 1240 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso 2024-02-22T22:47:30.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:47:30.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso 2024-02-22T22:47:30.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso 2024-02-22T22:47:30.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:47:30.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso 2024-02-22T22:47:30.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.kpvgso ... 2024-02-22T22:47:30.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:47:30.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:47:30.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:47:30.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:47:30.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:47:30.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:47:30.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:47:30.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:47:30.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:47:30.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:47:30.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso 2024-02-22T22:47:30.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:47:30.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso 2024-02-22T22:47:30.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso 2024-02-22T22:47:30.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:47:30.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso 2024-02-22T22:47:30.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.kpvgso ... 2024-02-22T22:47:30.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:47:30.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:47:30.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:47:30.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:47:30.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:47:30.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: cephadm 2024-02-22T22:47:29.330718+0000 mgr.smithi049.pzczis (mgr.14180) 1241 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.kpvgso 2024-02-22T22:47:30.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: audit 2024-02-22T22:47:29.331320+0000 mon.smithi049 (mon.0) 988 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.kpvgso"}]: dispatch 2024-02-22T22:47:30.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: cephadm 2024-02-22T22:47:29.332676+0000 mgr.smithi049.pzczis (mgr.14180) 1242 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.kpvgso on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso 2024-02-22T22:47:30.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:47:30.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso 2024-02-22T22:47:30.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso 2024-02-22T22:47:30.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:47:30.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso 2024-02-22T22:47:30.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.kpvgso ... 2024-02-22T22:47:30.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:47:30.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:47:30.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:47:30.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:47:30.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:47:30.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: cephadm 2024-02-22T22:47:29.334961+0000 mgr.smithi049.pzczis (mgr.14180) 1243 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.gmjslg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:47:30.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: cephadm 2024-02-22T22:47:29.336735+0000 mgr.smithi049.pzczis (mgr.14180) 1244 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:47:30.557 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:30 smithi195 bash[18068]: cluster 2024-02-22T22:47:29.337651+0000 mgr.smithi049.pzczis (mgr.14180) 1245 : cluster [DBG] pgmap v832: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 118 B/s rd, 0 op/s 2024-02-22T22:47:30.911 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:47:31.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:31 smithi049 bash[14150]: audit 2024-02-22T22:47:30.011023+0000 mgr.smithi049.pzczis (mgr.14180) 1246 : audit [DBG] from='client.15492 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:47:31.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:31 smithi049 bash[14150]: cluster 2024-02-22T22:47:30.055335+0000 mon.smithi049 (mon.0) 989 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:47:31.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:31 smithi195 bash[18068]: audit 2024-02-22T22:47:30.011023+0000 mgr.smithi049.pzczis (mgr.14180) 1246 : audit [DBG] from='client.15492 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:47:31.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:31 smithi195 bash[18068]: cluster 2024-02-22T22:47:30.055335+0000 mon.smithi049 (mon.0) 989 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:47:31.912 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:47:32.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:32 smithi049 bash[14150]: cluster 2024-02-22T22:47:31.339482+0000 mgr.smithi049.pzczis (mgr.14180) 1247 : cluster [DBG] pgmap v833: 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-22T22:47:32.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:32 smithi049 bash[14150]: audit 2024-02-22T22:47:31.988104+0000 mon.smithi049 (mon.0) 990 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:47:32.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:32 smithi195 bash[18068]: cluster 2024-02-22T22:47:31.339482+0000 mgr.smithi049.pzczis (mgr.14180) 1247 : cluster [DBG] pgmap v833: 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-22T22:47:32.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:32 smithi195 bash[18068]: audit 2024-02-22T22:47:31.988104+0000 mon.smithi049 (mon.0) 990 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:47:34.690 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:34 smithi049 bash[14150]: cluster 2024-02-22T22:47:33.340602+0000 mgr.smithi049.pzczis (mgr.14180) 1248 : 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-22T22:47:34.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:34 smithi195 bash[18068]: cluster 2024-02-22T22:47:33.340602+0000 mgr.smithi049.pzczis (mgr.14180) 1248 : 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-22T22:47:35.197 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:47:35.197 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:46:20.660305Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:25.034884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zdzrdk on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\nDeploy daemon haproxy.nfs.foo.smithi195.zdzrdk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.332509Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.kpvgso on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\nDeploy daemon haproxy.nfs.foo.smithi049.kpvgso ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.334855Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.gmjslg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:47:36.056 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:47:36.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:36 smithi049 bash[14150]: audit 2024-02-22T22:47:35.189575+0000 mgr.smithi049.pzczis (mgr.14180) 1249 : audit [DBG] from='client.15496 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:47:36.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:36 smithi049 bash[14150]: cluster 2024-02-22T22:47:35.342166+0000 mgr.smithi049.pzczis (mgr.14180) 1250 : 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-22T22:47:36.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:36 smithi195 bash[18068]: audit 2024-02-22T22:47:35.189575+0000 mgr.smithi049.pzczis (mgr.14180) 1249 : audit [DBG] from='client.15496 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:47:36.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:36 smithi195 bash[18068]: cluster 2024-02-22T22:47:35.342166+0000 mgr.smithi049.pzczis (mgr.14180) 1250 : 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-22T22:47:37.057 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:47:38.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:38 smithi049 bash[14150]: cluster 2024-02-22T22:47:37.344076+0000 mgr.smithi049.pzczis (mgr.14180) 1251 : 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-22T22:47:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:38 smithi049 bash[14150]: audit 2024-02-22T22:47:37.672958+0000 mon.smithi049 (mon.0) 991 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:47:39.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:38 smithi195 bash[18068]: cluster 2024-02-22T22:47:37.344076+0000 mgr.smithi049.pzczis (mgr.14180) 1251 : 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-22T22:47:39.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:38 smithi195 bash[18068]: audit 2024-02-22T22:47:37.672958+0000 mon.smithi049 (mon.0) 991 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:47:40.352 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:47:40.352 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:46:20.660305Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:25.034884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zdzrdk on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\nDeploy daemon haproxy.nfs.foo.smithi195.zdzrdk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.332509Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.kpvgso on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\nDeploy daemon haproxy.nfs.foo.smithi049.kpvgso ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.334855Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.gmjslg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:47:40.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:40 smithi049 bash[14150]: cluster 2024-02-22T22:47:39.345346+0000 mgr.smithi049.pzczis (mgr.14180) 1252 : 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-22T22:47:41.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:40 smithi195 bash[18068]: cluster 2024-02-22T22:47:39.345346+0000 mgr.smithi049.pzczis (mgr.14180) 1252 : 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-22T22:47:41.144 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:47:41.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:41 smithi049 bash[14150]: audit 2024-02-22T22:47:40.344149+0000 mgr.smithi049.pzczis (mgr.14180) 1253 : audit [DBG] from='client.25205 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:47:42.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:41 smithi195 bash[18068]: audit 2024-02-22T22:47:40.344149+0000 mgr.smithi049.pzczis (mgr.14180) 1253 : audit [DBG] from='client.25205 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:47:42.145 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:47:43.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:42 smithi195 bash[18068]: cluster 2024-02-22T22:47:41.347336+0000 mgr.smithi049.pzczis (mgr.14180) 1254 : cluster [DBG] pgmap v838: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:47:43.113 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:42 smithi049 bash[14150]: cluster 2024-02-22T22:47:41.347336+0000 mgr.smithi049.pzczis (mgr.14180) 1254 : cluster [DBG] pgmap v838: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:47:45.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:44 smithi195 bash[18068]: cluster 2024-02-22T22:47:43.349028+0000 mgr.smithi049.pzczis (mgr.14180) 1255 : cluster [DBG] pgmap v839: 225 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-22T22:47:45.180 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:47:45.180 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:46:20.660305Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:25.034884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zdzrdk on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\nDeploy daemon haproxy.nfs.foo.smithi195.zdzrdk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.332509Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.kpvgso on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\nDeploy daemon haproxy.nfs.foo.smithi049.kpvgso ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.334855Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.gmjslg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:47:45.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:44 smithi049 bash[14150]: cluster 2024-02-22T22:47:43.349028+0000 mgr.smithi049.pzczis (mgr.14180) 1255 : cluster [DBG] pgmap v839: 225 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-22T22:47:45.925 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:47:46.926 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:47:46.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:46 smithi049 bash[14150]: audit 2024-02-22T22:47:45.172297+0000 mgr.smithi049.pzczis (mgr.14180) 1256 : audit [DBG] from='client.15504 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:47:46.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:46 smithi049 bash[14150]: cluster 2024-02-22T22:47:45.350632+0000 mgr.smithi049.pzczis (mgr.14180) 1257 : cluster [DBG] pgmap v840: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:47:47.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:46 smithi195 bash[18068]: audit 2024-02-22T22:47:45.172297+0000 mgr.smithi049.pzczis (mgr.14180) 1256 : audit [DBG] from='client.15504 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:47:47.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:46 smithi195 bash[18068]: cluster 2024-02-22T22:47:45.350632+0000 mgr.smithi049.pzczis (mgr.14180) 1257 : cluster [DBG] pgmap v840: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:47:48.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:48 smithi049 bash[14150]: cluster 2024-02-22T22:47:47.351857+0000 mgr.smithi049.pzczis (mgr.14180) 1258 : cluster [DBG] pgmap v841: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:47:49.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:48 smithi195 bash[18068]: cluster 2024-02-22T22:47:47.351857+0000 mgr.smithi049.pzczis (mgr.14180) 1258 : cluster [DBG] pgmap v841: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:47:50.462 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:47:50.462 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:46:20.660305Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:25.034884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zdzrdk on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\nDeploy daemon haproxy.nfs.foo.smithi195.zdzrdk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.332509Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.kpvgso on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\nDeploy daemon haproxy.nfs.foo.smithi049.kpvgso ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.334855Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.gmjslg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:47:50.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:50 smithi049 bash[14150]: cluster 2024-02-22T22:47:49.352647+0000 mgr.smithi049.pzczis (mgr.14180) 1259 : cluster [DBG] pgmap v842: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:47:51.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:50 smithi195 bash[18068]: cluster 2024-02-22T22:47:49.352647+0000 mgr.smithi049.pzczis (mgr.14180) 1259 : cluster [DBG] pgmap v842: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:47:51.194 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:47:52.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:51 smithi195 bash[18068]: audit 2024-02-22T22:47:50.454847+0000 mgr.smithi049.pzczis (mgr.14180) 1260 : audit [DBG] from='client.15508 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:47:52.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:51 smithi049 bash[14150]: audit 2024-02-22T22:47:50.454847+0000 mgr.smithi049.pzczis (mgr.14180) 1260 : audit [DBG] from='client.15508 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:47:52.195 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:47:53.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:52 smithi195 bash[18068]: cluster 2024-02-22T22:47:51.354761+0000 mgr.smithi049.pzczis (mgr.14180) 1261 : cluster [DBG] pgmap v843: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:47:53.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:52 smithi049 bash[14150]: cluster 2024-02-22T22:47:51.354761+0000 mgr.smithi049.pzczis (mgr.14180) 1261 : cluster [DBG] pgmap v843: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:47:55.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:54 smithi195 bash[18068]: cluster 2024-02-22T22:47:53.356431+0000 mgr.smithi049.pzczis (mgr.14180) 1262 : 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-22T22:47:55.097 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:54 smithi049 bash[14150]: cluster 2024-02-22T22:47:53.356431+0000 mgr.smithi049.pzczis (mgr.14180) 1262 : 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-22T22:47:55.535 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:47:55.536 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:46:20.660305Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:25.034884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zdzrdk on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\nDeploy daemon haproxy.nfs.foo.smithi195.zdzrdk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.332509Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.kpvgso on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\nDeploy daemon haproxy.nfs.foo.smithi049.kpvgso ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.334855Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.gmjslg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:47:56.326 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:47:57.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:56 smithi195 bash[18068]: cluster 2024-02-22T22:47:55.357962+0000 mgr.smithi049.pzczis (mgr.14180) 1263 : 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-22T22:47:57.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:56 smithi195 bash[18068]: audit 2024-02-22T22:47:55.528594+0000 mgr.smithi049.pzczis (mgr.14180) 1264 : audit [DBG] from='client.15512 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:47:57.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:56 smithi049 bash[14150]: cluster 2024-02-22T22:47:55.357962+0000 mgr.smithi049.pzczis (mgr.14180) 1263 : 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-22T22:47:57.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:56 smithi049 bash[14150]: audit 2024-02-22T22:47:55.528594+0000 mgr.smithi049.pzczis (mgr.14180) 1264 : audit [DBG] from='client.15512 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:47:57.327 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:47:59.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:47:58 smithi195 bash[18068]: cluster 2024-02-22T22:47:57.359810+0000 mgr.smithi049.pzczis (mgr.14180) 1265 : 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-22T22:47:59.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:47:58 smithi049 bash[14150]: cluster 2024-02-22T22:47:57.359810+0000 mgr.smithi049.pzczis (mgr.14180) 1265 : 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-22T22:48:00.588 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:48:00.588 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:46:20.660305Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:25.034884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zdzrdk on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\nDeploy daemon haproxy.nfs.foo.smithi195.zdzrdk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.332509Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.kpvgso on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\nDeploy daemon haproxy.nfs.foo.smithi049.kpvgso ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.334855Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.gmjslg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:48:00.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:00 smithi049 bash[14150]: cluster 2024-02-22T22:47:59.361098+0000 mgr.smithi049.pzczis (mgr.14180) 1266 : 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-22T22:48:01.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:00 smithi195 bash[18068]: cluster 2024-02-22T22:47:59.361098+0000 mgr.smithi049.pzczis (mgr.14180) 1266 : 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-22T22:48:01.435 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:48:02.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:01 smithi195 bash[18068]: audit 2024-02-22T22:48:00.580278+0000 mgr.smithi049.pzczis (mgr.14180) 1267 : audit [DBG] from='client.15516 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:48:02.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:01 smithi049 bash[14150]: audit 2024-02-22T22:48:00.580278+0000 mgr.smithi049.pzczis (mgr.14180) 1267 : audit [DBG] from='client.15516 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:48:02.436 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:48:02.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:02 smithi049 bash[14150]: cluster 2024-02-22T22:48:01.363075+0000 mgr.smithi049.pzczis (mgr.14180) 1268 : 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-22T22:48:03.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:02 smithi195 bash[18068]: cluster 2024-02-22T22:48:01.363075+0000 mgr.smithi049.pzczis (mgr.14180) 1268 : 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-22T22:48:05.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:04 smithi195 bash[18068]: cluster 2024-02-22T22:48:03.364041+0000 mgr.smithi049.pzczis (mgr.14180) 1269 : 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-22T22:48:05.151 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:04 smithi049 bash[14150]: cluster 2024-02-22T22:48:03.364041+0000 mgr.smithi049.pzczis (mgr.14180) 1269 : 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-22T22:48:05.557 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:48:05.557 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:46:20.660305Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:25.034884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zdzrdk on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\nDeploy daemon haproxy.nfs.foo.smithi195.zdzrdk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.332509Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.kpvgso on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\nDeploy daemon haproxy.nfs.foo.smithi049.kpvgso ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.334855Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.gmjslg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:48:06.315 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:48:06.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:06 smithi049 bash[14150]: cluster 2024-02-22T22:48:05.365508+0000 mgr.smithi049.pzczis (mgr.14180) 1270 : 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-22T22:48:06.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:06 smithi049 bash[14150]: audit 2024-02-22T22:48:05.548067+0000 mgr.smithi049.pzczis (mgr.14180) 1271 : audit [DBG] from='client.15520 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:48:07.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:06 smithi195 bash[18068]: cluster 2024-02-22T22:48:05.365508+0000 mgr.smithi049.pzczis (mgr.14180) 1270 : 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-22T22:48:07.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:06 smithi195 bash[18068]: audit 2024-02-22T22:48:05.548067+0000 mgr.smithi049.pzczis (mgr.14180) 1271 : audit [DBG] from='client.15520 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:48:07.316 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:48:08.999 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:08 smithi049 bash[14150]: cluster 2024-02-22T22:48:07.366805+0000 mgr.smithi049.pzczis (mgr.14180) 1272 : 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-22T22:48:09.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:08 smithi195 bash[18068]: cluster 2024-02-22T22:48:07.366805+0000 mgr.smithi049.pzczis (mgr.14180) 1272 : 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-22T22:48:10.552 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:48:10.553 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:46:20.660305Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:25.034884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zdzrdk on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\nDeploy daemon haproxy.nfs.foo.smithi195.zdzrdk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.332509Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.kpvgso on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\nDeploy daemon haproxy.nfs.foo.smithi049.kpvgso ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.334855Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.gmjslg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:48:10.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:10 smithi049 bash[14150]: cluster 2024-02-22T22:48:09.367989+0000 mgr.smithi049.pzczis (mgr.14180) 1273 : cluster [DBG] pgmap v852: 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-22T22:48:11.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:10 smithi195 bash[18068]: cluster 2024-02-22T22:48:09.367989+0000 mgr.smithi049.pzczis (mgr.14180) 1273 : cluster [DBG] pgmap v852: 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-22T22:48:11.337 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:48:12.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:11 smithi195 bash[18068]: audit 2024-02-22T22:48:10.545295+0000 mgr.smithi049.pzczis (mgr.14180) 1274 : audit [DBG] from='client.15524 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:48:12.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:11 smithi049 bash[14150]: audit 2024-02-22T22:48:10.545295+0000 mgr.smithi049.pzczis (mgr.14180) 1274 : audit [DBG] from='client.15524 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:48:12.338 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:48:13.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:12 smithi049 bash[14150]: cluster 2024-02-22T22:48:11.369887+0000 mgr.smithi049.pzczis (mgr.14180) 1275 : cluster [DBG] pgmap v853: 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-22T22:48:13.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:12 smithi195 bash[18068]: cluster 2024-02-22T22:48:11.369887+0000 mgr.smithi049.pzczis (mgr.14180) 1275 : cluster [DBG] pgmap v853: 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-22T22:48:15.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:14 smithi049 bash[14150]: cluster 2024-02-22T22:48:13.371563+0000 mgr.smithi049.pzczis (mgr.14180) 1276 : cluster [DBG] pgmap v854: 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-22T22:48:15.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:14 smithi195 bash[18068]: cluster 2024-02-22T22:48:13.371563+0000 mgr.smithi049.pzczis (mgr.14180) 1276 : cluster [DBG] pgmap v854: 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-22T22:48:15.707 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:48:15.708 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:46:20.660305Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:25.034884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zdzrdk on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\nDeploy daemon haproxy.nfs.foo.smithi195.zdzrdk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.332509Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.kpvgso on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\nDeploy daemon haproxy.nfs.foo.smithi049.kpvgso ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.334855Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.gmjslg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:48:16.445 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:48:17.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:16 smithi049 bash[14150]: cluster 2024-02-22T22:48:15.372464+0000 mgr.smithi049.pzczis (mgr.14180) 1277 : cluster [DBG] pgmap v855: 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-22T22:48:17.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:16 smithi049 bash[14150]: audit 2024-02-22T22:48:15.698203+0000 mgr.smithi049.pzczis (mgr.14180) 1278 : audit [DBG] from='client.15528 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:48:17.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:16 smithi195 bash[18068]: cluster 2024-02-22T22:48:15.372464+0000 mgr.smithi049.pzczis (mgr.14180) 1277 : cluster [DBG] pgmap v855: 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-22T22:48:17.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:16 smithi195 bash[18068]: audit 2024-02-22T22:48:15.698203+0000 mgr.smithi049.pzczis (mgr.14180) 1278 : audit [DBG] from='client.15528 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:48:17.445 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:48:17.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:17 smithi049 bash[14150]: cluster 2024-02-22T22:48:17.374150+0000 mgr.smithi049.pzczis (mgr.14180) 1279 : cluster [DBG] pgmap v856: 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-22T22:48:18.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:17 smithi195 bash[18068]: cluster 2024-02-22T22:48:17.374150+0000 mgr.smithi049.pzczis (mgr.14180) 1279 : cluster [DBG] pgmap v856: 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-22T22:48:20.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:20 smithi049 bash[14150]: cluster 2024-02-22T22:48:19.375342+0000 mgr.smithi049.pzczis (mgr.14180) 1280 : cluster [DBG] pgmap v857: 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-22T22:48:20.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:20 smithi195 bash[18068]: cluster 2024-02-22T22:48:19.375342+0000 mgr.smithi049.pzczis (mgr.14180) 1280 : cluster [DBG] pgmap v857: 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-22T22:48:20.846 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:48:20.847 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:46:20.660305Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:25.034884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zdzrdk on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\nDeploy daemon haproxy.nfs.foo.smithi195.zdzrdk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.332509Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.kpvgso on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\nDeploy daemon haproxy.nfs.foo.smithi049.kpvgso ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.334855Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.gmjslg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:48:21.585 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:48:22.586 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:48:22.690 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:22 smithi049 bash[14150]: audit 2024-02-22T22:48:20.839867+0000 mgr.smithi049.pzczis (mgr.14180) 1281 : audit [DBG] from='client.15532 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:48:22.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:22 smithi049 bash[14150]: cluster 2024-02-22T22:48:21.377420+0000 mgr.smithi049.pzczis (mgr.14180) 1282 : cluster [DBG] pgmap v858: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 511 B/s rd, 0 op/s 2024-02-22T22:48:22.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:22 smithi195 bash[18068]: audit 2024-02-22T22:48:20.839867+0000 mgr.smithi049.pzczis (mgr.14180) 1281 : audit [DBG] from='client.15532 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:48:22.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:22 smithi195 bash[18068]: cluster 2024-02-22T22:48:21.377420+0000 mgr.smithi049.pzczis (mgr.14180) 1282 : cluster [DBG] pgmap v858: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 511 B/s rd, 0 op/s 2024-02-22T22:48:24.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:24 smithi195 bash[18068]: cluster 2024-02-22T22:48:23.378683+0000 mgr.smithi049.pzczis (mgr.14180) 1283 : 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-22T22:48:24.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:24 smithi049 bash[14150]: cluster 2024-02-22T22:48:23.378683+0000 mgr.smithi049.pzczis (mgr.14180) 1283 : 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-22T22:48:25.867 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:48:25.867 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:46:20.660305Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:25.034884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zdzrdk on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\nDeploy daemon haproxy.nfs.foo.smithi195.zdzrdk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.332509Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.kpvgso on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\nDeploy daemon haproxy.nfs.foo.smithi049.kpvgso ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.334855Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.gmjslg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:48:26.599 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:48:26.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:26 smithi195 bash[18068]: cluster 2024-02-22T22:48:25.379929+0000 mgr.smithi049.pzczis (mgr.14180) 1284 : 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-22T22:48:26.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:26 smithi049 bash[14150]: cluster 2024-02-22T22:48:25.379929+0000 mgr.smithi049.pzczis (mgr.14180) 1284 : 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-22T22:48:27.600 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:48:27.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:27 smithi195 bash[18068]: audit 2024-02-22T22:48:25.860441+0000 mgr.smithi049.pzczis (mgr.14180) 1285 : audit [DBG] from='client.15536 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:48:27.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:27 smithi049 bash[14150]: audit 2024-02-22T22:48:25.860441+0000 mgr.smithi049.pzczis (mgr.14180) 1285 : audit [DBG] from='client.15536 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:48:28.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:28 smithi195 bash[18068]: cluster 2024-02-22T22:48:27.381456+0000 mgr.smithi049.pzczis (mgr.14180) 1286 : 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-22T22:48:28.803 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:28 smithi049 bash[14150]: cluster 2024-02-22T22:48:27.381456+0000 mgr.smithi049.pzczis (mgr.14180) 1286 : 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-22T22:48:29.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:29 smithi195 bash[18068]: audit 2024-02-22T22:48:29.340535+0000 mon.smithi049 (mon.0) 992 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:48:29.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:29 smithi049 bash[14150]: audit 2024-02-22T22:48:29.340535+0000 mon.smithi049 (mon.0) 992 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:48:30.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:30 smithi195 bash[18068]: cluster 2024-02-22T22:48:29.382269+0000 mgr.smithi049.pzczis (mgr.14180) 1287 : cluster [DBG] pgmap v862: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:48:30.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:30 smithi195 bash[18068]: audit 2024-02-22T22:48:29.647599+0000 mon.smithi049 (mon.0) 993 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:48:30.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:30 smithi195 bash[18068]: audit 2024-02-22T22:48:29.648498+0000 mon.smithi049 (mon.0) 994 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:48:30.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:30 smithi195 bash[18068]: audit 2024-02-22T22:48:29.654633+0000 mon.smithi049 (mon.0) 995 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:48:30.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:30 smithi195 bash[18068]: cluster 2024-02-22T22:48:29.655413+0000 mgr.smithi049.pzczis (mgr.14180) 1288 : cluster [DBG] pgmap v863: 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-22T22:48:30.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:30 smithi195 bash[18068]: audit 2024-02-22T22:48:29.661916+0000 mon.smithi049 (mon.0) 996 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:48:30.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:30 smithi195 bash[18068]: audit 2024-02-22T22:48:29.672683+0000 mon.smithi049 (mon.0) 997 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:48:30.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:30 smithi195 bash[18068]: cephadm 2024-02-22T22:48:29.676616+0000 mgr.smithi049.pzczis (mgr.14180) 1289 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.kthztr on smithi195 2024-02-22T22:48:30.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:30 smithi049 bash[14150]: cluster 2024-02-22T22:48:29.382269+0000 mgr.smithi049.pzczis (mgr.14180) 1287 : cluster [DBG] pgmap v862: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:48:30.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:30 smithi049 bash[14150]: audit 2024-02-22T22:48:29.647599+0000 mon.smithi049 (mon.0) 993 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:48:30.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:30 smithi049 bash[14150]: audit 2024-02-22T22:48:29.648498+0000 mon.smithi049 (mon.0) 994 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:48:30.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:30 smithi049 bash[14150]: audit 2024-02-22T22:48:29.654633+0000 mon.smithi049 (mon.0) 995 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:48:30.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:30 smithi049 bash[14150]: cluster 2024-02-22T22:48:29.655413+0000 mgr.smithi049.pzczis (mgr.14180) 1288 : cluster [DBG] pgmap v863: 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-22T22:48:30.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:30 smithi049 bash[14150]: audit 2024-02-22T22:48:29.661916+0000 mon.smithi049 (mon.0) 996 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:48:30.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:30 smithi049 bash[14150]: audit 2024-02-22T22:48:29.672683+0000 mon.smithi049 (mon.0) 997 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:48:30.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:30 smithi049 bash[14150]: cephadm 2024-02-22T22:48:29.676616+0000 mgr.smithi049.pzczis (mgr.14180) 1289 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.kthztr on smithi195 2024-02-22T22:48:30.946 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:48:30.946 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:46:20.660305Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kmiuag on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:25.034884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zdzrdk on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\nDeploy daemon haproxy.nfs.foo.smithi195.zdzrdk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.332509Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.kpvgso on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\nDeploy daemon haproxy.nfs.foo.smithi049.kpvgso ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.334855Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.gmjslg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:48:31.682 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:48:31.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:31 smithi195 bash[18068]: cluster 2024-02-22T22:48:30.652083+0000 mon.smithi049 (mon.0) 998 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:48:31.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:31 smithi195 bash[18068]: cluster 2024-02-22T22:48:30.652119+0000 mon.smithi049 (mon.0) 999 : cluster [INF] Cluster is now healthy 2024-02-22T22:48:31.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:31 smithi049 bash[14150]: cluster 2024-02-22T22:48:30.652083+0000 mon.smithi049 (mon.0) 998 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:48:31.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:31 smithi049 bash[14150]: cluster 2024-02-22T22:48:30.652119+0000 mon.smithi049 (mon.0) 999 : cluster [INF] Cluster is now healthy 2024-02-22T22:48:32.683 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:48:32.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:32 smithi195 bash[18068]: audit 2024-02-22T22:48:30.942885+0000 mgr.smithi049.pzczis (mgr.14180) 1290 : audit [DBG] from='client.15540 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:48:32.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:32 smithi195 bash[18068]: cluster 2024-02-22T22:48:31.657442+0000 mgr.smithi049.pzczis (mgr.14180) 1291 : cluster [DBG] pgmap v864: 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-22T22:48:32.881 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:32 smithi049 bash[14150]: audit 2024-02-22T22:48:30.942885+0000 mgr.smithi049.pzczis (mgr.14180) 1290 : audit [DBG] from='client.15540 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:48:32.881 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:32 smithi049 bash[14150]: cluster 2024-02-22T22:48:31.657442+0000 mgr.smithi049.pzczis (mgr.14180) 1291 : cluster [DBG] pgmap v864: 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-22T22:48:33.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:33 smithi195 bash[18068]: audit 2024-02-22T22:48:33.595979+0000 mon.smithi049 (mon.0) 1000 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.kthztr"}]: dispatch 2024-02-22T22:48:33.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:33 smithi049 bash[14150]: audit 2024-02-22T22:48:33.595979+0000 mon.smithi049 (mon.0) 1000 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.kthztr"}]: dispatch 2024-02-22T22:48:34.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: cephadm 2024-02-22T22:48:33.594556+0000 mgr.smithi049.pzczis (mgr.14180) 1292 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr 2024-02-22T22:48:34.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:48:34.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr 2024-02-22T22:48:34.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr 2024-02-22T22:48:34.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:48:34.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr 2024-02-22T22:48:34.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.kthztr ... 2024-02-22T22:48:34.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:48:34.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:48:34.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:48:34.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:48:34.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:48:34.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:48:34.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:48:34.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:48:34.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:48:34.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:48:34.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr 2024-02-22T22:48:34.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:48:34.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr 2024-02-22T22:48:34.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr 2024-02-22T22:48:34.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:48:34.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr 2024-02-22T22:48:34.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.kthztr ... 2024-02-22T22:48:34.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:48:34.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:48:34.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:48:34.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:48:34.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:48:34.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: cephadm 2024-02-22T22:48:33.595165+0000 mgr.smithi049.pzczis (mgr.14180) 1293 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.kthztr 2024-02-22T22:48:34.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: cephadm 2024-02-22T22:48:33.597700+0000 mgr.smithi049.pzczis (mgr.14180) 1294 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.kthztr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr 2024-02-22T22:48:34.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:48:34.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr 2024-02-22T22:48:34.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr 2024-02-22T22:48:34.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:48:34.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr 2024-02-22T22:48:34.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.kthztr ... 2024-02-22T22:48:34.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:48:34.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:48:34.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:48:34.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:48:34.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:48:34.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: cephadm 2024-02-22T22:48:33.601586+0000 mgr.smithi049.pzczis (mgr.14180) 1295 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.fhyksq on smithi049 2024-02-22T22:48:34.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:34 smithi049 bash[14150]: cluster 2024-02-22T22:48:33.658249+0000 mgr.smithi049.pzczis (mgr.14180) 1296 : cluster [DBG] pgmap v865: 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-22T22:48:35.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: cephadm 2024-02-22T22:48:33.594556+0000 mgr.smithi049.pzczis (mgr.14180) 1292 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr 2024-02-22T22:48:35.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:48:35.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr 2024-02-22T22:48:35.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr 2024-02-22T22:48:35.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:48:35.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr 2024-02-22T22:48:35.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.kthztr ... 2024-02-22T22:48:35.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:48:35.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:48:35.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:48:35.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:48:35.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:48:35.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:48:35.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:48:35.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:48:35.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:48:35.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:48:35.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr 2024-02-22T22:48:35.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:48:35.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr 2024-02-22T22:48:35.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr 2024-02-22T22:48:35.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:48:35.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr 2024-02-22T22:48:35.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.kthztr ... 2024-02-22T22:48:35.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:48:35.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:48:35.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:48:35.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:48:35.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:48:35.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: cephadm 2024-02-22T22:48:33.595165+0000 mgr.smithi049.pzczis (mgr.14180) 1293 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.kthztr 2024-02-22T22:48:35.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: cephadm 2024-02-22T22:48:33.597700+0000 mgr.smithi049.pzczis (mgr.14180) 1294 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.kthztr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr 2024-02-22T22:48:35.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:48:35.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr 2024-02-22T22:48:35.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr 2024-02-22T22:48:35.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:48:35.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr 2024-02-22T22:48:35.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.kthztr ... 2024-02-22T22:48:35.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:48:35.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:48:35.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:48:35.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:48:35.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:48:35.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: cephadm 2024-02-22T22:48:33.601586+0000 mgr.smithi049.pzczis (mgr.14180) 1295 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.fhyksq on smithi049 2024-02-22T22:48:35.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:34 smithi195 bash[18068]: cluster 2024-02-22T22:48:33.658249+0000 mgr.smithi049.pzczis (mgr.14180) 1296 : cluster [DBG] pgmap v865: 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-22T22:48:36.022 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:48:36.022 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:47:25.034884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zdzrdk on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-zdzrdk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.zdzrdk\nDeploy daemon haproxy.nfs.foo.smithi195.zdzrdk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.332509Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.kpvgso on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-kpvgso\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.kpvgso\nDeploy daemon haproxy.nfs.foo.smithi049.kpvgso ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:47:29.334855Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.gmjslg on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:33.597476Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.kthztr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\nDeploy daemon haproxy.nfs.foo.smithi195.kthztr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:48:36.727 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:48:36.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:36 smithi049 bash[14150]: cluster 2024-02-22T22:48:35.659722+0000 mgr.smithi049.pzczis (mgr.14180) 1297 : cluster [DBG] pgmap v866: 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-22T22:48:37.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:36 smithi195 bash[18068]: cluster 2024-02-22T22:48:35.659722+0000 mgr.smithi049.pzczis (mgr.14180) 1297 : cluster [DBG] pgmap v866: 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-22T22:48:37.728 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:48:37.926 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:37 smithi049 bash[14150]: audit 2024-02-22T22:48:36.014643+0000 mgr.smithi049.pzczis (mgr.14180) 1298 : audit [DBG] from='client.15544 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:48:37.926 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:37 smithi049 bash[14150]: audit 2024-02-22T22:48:37.444825+0000 mon.smithi049 (mon.0) 1001 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.fhyksq"}]: dispatch 2024-02-22T22:48:38.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:37 smithi195 bash[18068]: audit 2024-02-22T22:48:36.014643+0000 mgr.smithi049.pzczis (mgr.14180) 1298 : audit [DBG] from='client.15544 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:48:38.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:37 smithi195 bash[18068]: audit 2024-02-22T22:48:37.444825+0000 mon.smithi049 (mon.0) 1001 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.fhyksq"}]: dispatch 2024-02-22T22:48:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: cephadm 2024-02-22T22:48:37.443699+0000 mgr.smithi049.pzczis (mgr.14180) 1299 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq 2024-02-22T22:48:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:48:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq 2024-02-22T22:48:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq 2024-02-22T22:48:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:48:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq 2024-02-22T22:48:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.fhyksq ... 2024-02-22T22:48:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:48:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:48:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:48:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:48:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:48:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:48:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:48:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:48:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:48:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:48:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq 2024-02-22T22:48:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:48:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq 2024-02-22T22:48:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq 2024-02-22T22:48:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:48:38.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq 2024-02-22T22:48:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.fhyksq ... 2024-02-22T22:48:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:48:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:48:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:48:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:48:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:48:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: cephadm 2024-02-22T22:48:37.444178+0000 mgr.smithi049.pzczis (mgr.14180) 1300 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.fhyksq 2024-02-22T22:48:38.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: cephadm 2024-02-22T22:48:37.446361+0000 mgr.smithi049.pzczis (mgr.14180) 1301 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.fhyksq on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq 2024-02-22T22:48:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:48:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq 2024-02-22T22:48:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq 2024-02-22T22:48:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:48:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq 2024-02-22T22:48:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.fhyksq ... 2024-02-22T22:48:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:48:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:48:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:48:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:48:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:48:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: cephadm 2024-02-22T22:48:37.450988+0000 mgr.smithi049.pzczis (mgr.14180) 1302 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.elbscq on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:48:38.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: cephadm 2024-02-22T22:48:37.453121+0000 mgr.smithi049.pzczis (mgr.14180) 1303 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:48:38.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: cluster 2024-02-22T22:48:37.455057+0000 mgr.smithi049.pzczis (mgr.14180) 1304 : cluster [DBG] pgmap v867: 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-22T22:48:38.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: cluster 2024-02-22T22:48:37.668701+0000 mon.smithi049 (mon.0) 1002 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:48:38.945 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:38 smithi049 bash[14150]: audit 2024-02-22T22:48:37.681544+0000 mon.smithi049 (mon.0) 1003 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:48:39.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: cephadm 2024-02-22T22:48:37.443699+0000 mgr.smithi049.pzczis (mgr.14180) 1299 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq 2024-02-22T22:48:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:48:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq 2024-02-22T22:48:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq 2024-02-22T22:48:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:48:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq 2024-02-22T22:48:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.fhyksq ... 2024-02-22T22:48:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:48:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:48:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:48:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:48:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:48:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:48:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:48:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:48:39.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:48:39.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:48:39.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq 2024-02-22T22:48:39.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:48:39.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq 2024-02-22T22:48:39.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq 2024-02-22T22:48:39.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:48:39.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq 2024-02-22T22:48:39.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.fhyksq ... 2024-02-22T22:48:39.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:48:39.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:48:39.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:48:39.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:48:39.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:48:39.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: cephadm 2024-02-22T22:48:37.444178+0000 mgr.smithi049.pzczis (mgr.14180) 1300 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.fhyksq 2024-02-22T22:48:39.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: cephadm 2024-02-22T22:48:37.446361+0000 mgr.smithi049.pzczis (mgr.14180) 1301 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.fhyksq on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq 2024-02-22T22:48:39.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:48:39.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq 2024-02-22T22:48:39.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq 2024-02-22T22:48:39.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:48:39.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq 2024-02-22T22:48:39.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.fhyksq ... 2024-02-22T22:48:39.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:48:39.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:48:39.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:48:39.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:48:39.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:48:39.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: cephadm 2024-02-22T22:48:37.450988+0000 mgr.smithi049.pzczis (mgr.14180) 1302 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.elbscq on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:48:39.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: cephadm 2024-02-22T22:48:37.453121+0000 mgr.smithi049.pzczis (mgr.14180) 1303 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:48:39.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: cluster 2024-02-22T22:48:37.455057+0000 mgr.smithi049.pzczis (mgr.14180) 1304 : cluster [DBG] pgmap v867: 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-22T22:48:39.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: cluster 2024-02-22T22:48:37.668701+0000 mon.smithi049 (mon.0) 1002 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:48:39.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:38 smithi195 bash[18068]: audit 2024-02-22T22:48:37.681544+0000 mon.smithi049 (mon.0) 1003 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:48:40.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:40 smithi049 bash[14150]: cluster 2024-02-22T22:48:39.456269+0000 mgr.smithi049.pzczis (mgr.14180) 1305 : cluster [DBG] pgmap v868: 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-22T22:48:41.001 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:48:41.001 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:33.597476Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.kthztr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\nDeploy daemon haproxy.nfs.foo.smithi195.kthztr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:48:37.446098Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fhyksq on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq\nDeploy daemon haproxy.nfs.foo.smithi049.fhyksq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:48:37.450737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.elbscq on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:37.452998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:48:41.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:40 smithi195 bash[18068]: cluster 2024-02-22T22:48:39.456269+0000 mgr.smithi049.pzczis (mgr.14180) 1305 : cluster [DBG] pgmap v868: 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-22T22:48:41.802 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:48:42.802 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:48:43.004 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:42 smithi049 bash[14150]: audit 2024-02-22T22:48:40.993883+0000 mgr.smithi049.pzczis (mgr.14180) 1306 : audit [DBG] from='client.15548 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:48:43.004 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:42 smithi049 bash[14150]: cluster 2024-02-22T22:48:41.458306+0000 mgr.smithi049.pzczis (mgr.14180) 1307 : cluster [DBG] pgmap v869: 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-22T22:48:43.004 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:42 smithi049 bash[14150]: audit 2024-02-22T22:48:42.052110+0000 mon.smithi049 (mon.0) 1004 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:48:43.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:42 smithi195 bash[18068]: audit 2024-02-22T22:48:40.993883+0000 mgr.smithi049.pzczis (mgr.14180) 1306 : audit [DBG] from='client.15548 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:48:43.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:42 smithi195 bash[18068]: cluster 2024-02-22T22:48:41.458306+0000 mgr.smithi049.pzczis (mgr.14180) 1307 : cluster [DBG] pgmap v869: 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-22T22:48:43.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:42 smithi195 bash[18068]: audit 2024-02-22T22:48:42.052110+0000 mon.smithi049 (mon.0) 1004 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:48:45.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:44 smithi195 bash[18068]: cluster 2024-02-22T22:48:43.459944+0000 mgr.smithi049.pzczis (mgr.14180) 1308 : cluster [DBG] pgmap v870: 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-22T22:48:45.239 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:44 smithi049 bash[14150]: cluster 2024-02-22T22:48:43.459944+0000 mgr.smithi049.pzczis (mgr.14180) 1308 : cluster [DBG] pgmap v870: 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-22T22:48:46.084 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:48:46.084 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:33.597476Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.kthztr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\nDeploy daemon haproxy.nfs.foo.smithi195.kthztr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:48:37.446098Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fhyksq on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq\nDeploy daemon haproxy.nfs.foo.smithi049.fhyksq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:48:37.450737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.elbscq on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:37.452998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:48:46.817 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:46 smithi049 bash[14150]: cluster 2024-02-22T22:48:45.461044+0000 mgr.smithi049.pzczis (mgr.14180) 1309 : cluster [DBG] pgmap v871: 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-22T22:48:46.818 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:48:47.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:46 smithi195 bash[18068]: cluster 2024-02-22T22:48:45.461044+0000 mgr.smithi049.pzczis (mgr.14180) 1309 : cluster [DBG] pgmap v871: 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-22T22:48:47.819 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:48:48.025 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:47 smithi049 bash[14150]: audit 2024-02-22T22:48:46.077284+0000 mgr.smithi049.pzczis (mgr.14180) 1310 : audit [DBG] from='client.15552 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:48:48.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:47 smithi195 bash[18068]: audit 2024-02-22T22:48:46.077284+0000 mgr.smithi049.pzczis (mgr.14180) 1310 : audit [DBG] from='client.15552 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:48:48.993 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:48 smithi049 bash[14150]: cluster 2024-02-22T22:48:47.462837+0000 mgr.smithi049.pzczis (mgr.14180) 1311 : cluster [DBG] pgmap v872: 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-22T22:48:49.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:48 smithi195 bash[18068]: cluster 2024-02-22T22:48:47.462837+0000 mgr.smithi049.pzczis (mgr.14180) 1311 : cluster [DBG] pgmap v872: 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-22T22:48:51.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:50 smithi195 bash[18068]: cluster 2024-02-22T22:48:49.464042+0000 mgr.smithi049.pzczis (mgr.14180) 1312 : cluster [DBG] pgmap v873: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:48:51.121 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:48:51.121 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:33.597476Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.kthztr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\nDeploy daemon haproxy.nfs.foo.smithi195.kthztr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:48:37.446098Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fhyksq on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq\nDeploy daemon haproxy.nfs.foo.smithi049.fhyksq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:48:37.450737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.elbscq on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:37.452998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:48:51.157 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:50 smithi049 bash[14150]: cluster 2024-02-22T22:48:49.464042+0000 mgr.smithi049.pzczis (mgr.14180) 1312 : cluster [DBG] pgmap v873: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:48:51.911 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:48:52.912 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:48:53.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:52 smithi195 bash[18068]: audit 2024-02-22T22:48:51.117218+0000 mgr.smithi049.pzczis (mgr.14180) 1313 : audit [DBG] from='client.15556 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:48:53.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:52 smithi195 bash[18068]: cluster 2024-02-22T22:48:51.465768+0000 mgr.smithi049.pzczis (mgr.14180) 1314 : cluster [DBG] pgmap v874: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:48:53.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:52 smithi195 bash[18068]: audit 2024-02-22T22:48:52.677266+0000 mon.smithi049 (mon.0) 1005 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:48:53.113 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:52 smithi049 bash[14150]: audit 2024-02-22T22:48:51.117218+0000 mgr.smithi049.pzczis (mgr.14180) 1313 : audit [DBG] from='client.15556 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:48:53.113 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:52 smithi049 bash[14150]: cluster 2024-02-22T22:48:51.465768+0000 mgr.smithi049.pzczis (mgr.14180) 1314 : cluster [DBG] pgmap v874: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:48:53.113 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:52 smithi049 bash[14150]: audit 2024-02-22T22:48:52.677266+0000 mon.smithi049 (mon.0) 1005 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:48:55.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:54 smithi195 bash[18068]: cluster 2024-02-22T22:48:53.467384+0000 mgr.smithi049.pzczis (mgr.14180) 1315 : cluster [DBG] pgmap v875: 225 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-22T22:48:55.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:54 smithi049 bash[14150]: cluster 2024-02-22T22:48:53.467384+0000 mgr.smithi049.pzczis (mgr.14180) 1315 : cluster [DBG] pgmap v875: 225 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-22T22:48:56.276 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:48:56.277 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:33.597476Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.kthztr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\nDeploy daemon haproxy.nfs.foo.smithi195.kthztr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:48:37.446098Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fhyksq on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq\nDeploy daemon haproxy.nfs.foo.smithi049.fhyksq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:48:37.450737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.elbscq on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:37.452998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:48:56.989 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:56 smithi049 bash[14150]: cluster 2024-02-22T22:48:55.468267+0000 mgr.smithi049.pzczis (mgr.14180) 1316 : 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-22T22:48:56.991 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:48:57.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:56 smithi195 bash[18068]: cluster 2024-02-22T22:48:55.468267+0000 mgr.smithi049.pzczis (mgr.14180) 1316 : 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-22T22:48:57.992 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:48:58.005 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:57 smithi049 bash[14150]: audit 2024-02-22T22:48:56.270007+0000 mgr.smithi049.pzczis (mgr.14180) 1317 : audit [DBG] from='client.15560 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:48:58.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:57 smithi195 bash[18068]: audit 2024-02-22T22:48:56.270007+0000 mgr.smithi049.pzczis (mgr.14180) 1317 : audit [DBG] from='client.15560 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:48:59.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:48:58 smithi195 bash[18068]: cluster 2024-02-22T22:48:57.470073+0000 mgr.smithi049.pzczis (mgr.14180) 1318 : 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-22T22:48:59.068 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:48:58 smithi049 bash[14150]: cluster 2024-02-22T22:48:57.470073+0000 mgr.smithi049.pzczis (mgr.14180) 1318 : 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-22T22:49:01.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:00 smithi195 bash[18068]: cluster 2024-02-22T22:48:59.471348+0000 mgr.smithi049.pzczis (mgr.14180) 1319 : 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-22T22:49:01.158 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:49:01.159 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:33.597476Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.kthztr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\nDeploy daemon haproxy.nfs.foo.smithi195.kthztr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:48:37.446098Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fhyksq on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq\nDeploy daemon haproxy.nfs.foo.smithi049.fhyksq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:48:37.450737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.elbscq on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:37.452998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:49:01.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:00 smithi049 bash[14150]: cluster 2024-02-22T22:48:59.471348+0000 mgr.smithi049.pzczis (mgr.14180) 1319 : 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-22T22:49:01.938 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:49:02.939 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:49:03.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:02 smithi195 bash[18068]: audit 2024-02-22T22:49:01.147975+0000 mgr.smithi049.pzczis (mgr.14180) 1320 : audit [DBG] from='client.15564 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:49:03.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:02 smithi195 bash[18068]: cluster 2024-02-22T22:49:01.473305+0000 mgr.smithi049.pzczis (mgr.14180) 1321 : cluster [DBG] pgmap v879: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:49:03.145 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:02 smithi049 bash[14150]: audit 2024-02-22T22:49:01.147975+0000 mgr.smithi049.pzczis (mgr.14180) 1320 : audit [DBG] from='client.15564 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:49:03.145 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:02 smithi049 bash[14150]: cluster 2024-02-22T22:49:01.473305+0000 mgr.smithi049.pzczis (mgr.14180) 1321 : cluster [DBG] pgmap v879: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:49:05.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:04 smithi195 bash[18068]: cluster 2024-02-22T22:49:03.474595+0000 mgr.smithi049.pzczis (mgr.14180) 1322 : cluster [DBG] pgmap v880: 225 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-22T22:49:05.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:04 smithi049 bash[14150]: cluster 2024-02-22T22:49:03.474595+0000 mgr.smithi049.pzczis (mgr.14180) 1322 : cluster [DBG] pgmap v880: 225 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-22T22:49:06.229 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:49:06.229 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:33.597476Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.kthztr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\nDeploy daemon haproxy.nfs.foo.smithi195.kthztr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:48:37.446098Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fhyksq on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq\nDeploy daemon haproxy.nfs.foo.smithi049.fhyksq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:48:37.450737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.elbscq on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:37.452998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:49:06.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:06 smithi049 bash[14150]: cluster 2024-02-22T22:49:05.476205+0000 mgr.smithi049.pzczis (mgr.14180) 1323 : 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-22T22:49:07.019 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:49:07.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:06 smithi195 bash[18068]: cluster 2024-02-22T22:49:05.476205+0000 mgr.smithi049.pzczis (mgr.14180) 1323 : 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-22T22:49:08.021 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:49:08.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:07 smithi195 bash[18068]: audit 2024-02-22T22:49:06.220340+0000 mgr.smithi049.pzczis (mgr.14180) 1324 : audit [DBG] from='client.15568 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:49:08.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:07 smithi049 bash[14150]: audit 2024-02-22T22:49:06.220340+0000 mgr.smithi049.pzczis (mgr.14180) 1324 : audit [DBG] from='client.15568 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:49:09.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:08 smithi195 bash[18068]: cluster 2024-02-22T22:49:07.477997+0000 mgr.smithi049.pzczis (mgr.14180) 1325 : 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-22T22:49:09.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:08 smithi049 bash[14150]: cluster 2024-02-22T22:49:07.477997+0000 mgr.smithi049.pzczis (mgr.14180) 1325 : 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-22T22:49:11.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:10 smithi195 bash[18068]: cluster 2024-02-22T22:49:09.478889+0000 mgr.smithi049.pzczis (mgr.14180) 1326 : cluster [DBG] pgmap v883: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:49:11.128 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:49:11.128 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:33.597476Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.kthztr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\nDeploy daemon haproxy.nfs.foo.smithi195.kthztr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:48:37.446098Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fhyksq on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq\nDeploy daemon haproxy.nfs.foo.smithi049.fhyksq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:48:37.450737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.elbscq on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:37.452998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:49:11.183 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:10 smithi049 bash[14150]: cluster 2024-02-22T22:49:09.478889+0000 mgr.smithi049.pzczis (mgr.14180) 1326 : cluster [DBG] pgmap v883: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:49:11.896 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:49:12.897 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:49:13.100 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:12 smithi049 bash[14150]: audit 2024-02-22T22:49:11.117777+0000 mgr.smithi049.pzczis (mgr.14180) 1327 : audit [DBG] from='client.15572 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:49:13.100 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:12 smithi049 bash[14150]: cluster 2024-02-22T22:49:11.479854+0000 mgr.smithi049.pzczis (mgr.14180) 1328 : cluster [DBG] pgmap v884: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:49:13.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:12 smithi195 bash[18068]: audit 2024-02-22T22:49:11.117777+0000 mgr.smithi049.pzczis (mgr.14180) 1327 : audit [DBG] from='client.15572 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:49:13.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:12 smithi195 bash[18068]: cluster 2024-02-22T22:49:11.479854+0000 mgr.smithi049.pzczis (mgr.14180) 1328 : cluster [DBG] pgmap v884: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:49:15.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:14 smithi049 bash[14150]: cluster 2024-02-22T22:49:13.480969+0000 mgr.smithi049.pzczis (mgr.14180) 1329 : cluster [DBG] pgmap v885: 225 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-22T22:49:15.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:14 smithi195 bash[18068]: cluster 2024-02-22T22:49:13.480969+0000 mgr.smithi049.pzczis (mgr.14180) 1329 : cluster [DBG] pgmap v885: 225 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-22T22:49:16.201 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:49:16.201 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:33.597476Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.kthztr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\nDeploy daemon haproxy.nfs.foo.smithi195.kthztr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:48:37.446098Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fhyksq on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq\nDeploy daemon haproxy.nfs.foo.smithi049.fhyksq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:48:37.450737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.elbscq on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:37.452998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:49:16.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:16 smithi049 bash[14150]: cluster 2024-02-22T22:49:15.482492+0000 mgr.smithi049.pzczis (mgr.14180) 1330 : cluster [DBG] pgmap v886: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:49:16.973 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:49:17.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:16 smithi195 bash[18068]: cluster 2024-02-22T22:49:15.482492+0000 mgr.smithi049.pzczis (mgr.14180) 1330 : cluster [DBG] pgmap v886: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:49:17.974 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:49:18.176 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:17 smithi049 bash[14150]: audit 2024-02-22T22:49:16.193542+0000 mgr.smithi049.pzczis (mgr.14180) 1331 : audit [DBG] from='client.15576 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:49:18.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:17 smithi195 bash[18068]: audit 2024-02-22T22:49:16.193542+0000 mgr.smithi049.pzczis (mgr.14180) 1331 : audit [DBG] from='client.15576 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:49:19.105 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:18 smithi049 bash[14150]: cluster 2024-02-22T22:49:17.484288+0000 mgr.smithi049.pzczis (mgr.14180) 1332 : cluster [DBG] pgmap v887: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:49:19.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:18 smithi195 bash[18068]: cluster 2024-02-22T22:49:17.484288+0000 mgr.smithi049.pzczis (mgr.14180) 1332 : cluster [DBG] pgmap v887: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:49:20.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:19 smithi049 bash[14150]: cluster 2024-02-22T22:49:19.485092+0000 mgr.smithi049.pzczis (mgr.14180) 1333 : cluster [DBG] pgmap v888: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:49:20.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:19 smithi195 bash[18068]: cluster 2024-02-22T22:49:19.485092+0000 mgr.smithi049.pzczis (mgr.14180) 1333 : cluster [DBG] pgmap v888: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:49:21.262 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:49:21.262 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:33.597476Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.kthztr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\nDeploy daemon haproxy.nfs.foo.smithi195.kthztr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:48:37.446098Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fhyksq on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq\nDeploy daemon haproxy.nfs.foo.smithi049.fhyksq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:48:37.450737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.elbscq on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:37.452998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:49:21.976 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:49:22.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:22 smithi195 bash[18068]: audit 2024-02-22T22:49:21.255669+0000 mgr.smithi049.pzczis (mgr.14180) 1334 : audit [DBG] from='client.15580 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:49:22.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:22 smithi195 bash[18068]: cluster 2024-02-22T22:49:21.486078+0000 mgr.smithi049.pzczis (mgr.14180) 1335 : cluster [DBG] pgmap v889: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:49:22.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:22 smithi049 bash[14150]: audit 2024-02-22T22:49:21.255669+0000 mgr.smithi049.pzczis (mgr.14180) 1334 : audit [DBG] from='client.15580 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:49:22.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:22 smithi049 bash[14150]: cluster 2024-02-22T22:49:21.486078+0000 mgr.smithi049.pzczis (mgr.14180) 1335 : cluster [DBG] pgmap v889: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:49:22.977 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:49:24.690 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:24 smithi049 bash[14150]: cluster 2024-02-22T22:49:23.487775+0000 mgr.smithi049.pzczis (mgr.14180) 1336 : cluster [DBG] pgmap v890: 225 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-22T22:49:24.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:24 smithi195 bash[18068]: cluster 2024-02-22T22:49:23.487775+0000 mgr.smithi049.pzczis (mgr.14180) 1336 : cluster [DBG] pgmap v890: 225 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-22T22:49:26.251 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:49:26.251 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:33.597476Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.kthztr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\nDeploy daemon haproxy.nfs.foo.smithi195.kthztr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:48:37.446098Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fhyksq on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq\nDeploy daemon haproxy.nfs.foo.smithi049.fhyksq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:48:37.450737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.elbscq on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:37.452998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:49:26.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:26 smithi049 bash[14150]: cluster 2024-02-22T22:49:25.489332+0000 mgr.smithi049.pzczis (mgr.14180) 1337 : cluster [DBG] pgmap v891: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.6 KiB/s rd, 0 B/s wr, 2 op/s 2024-02-22T22:49:27.024 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:49:27.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:26 smithi195 bash[18068]: cluster 2024-02-22T22:49:25.489332+0000 mgr.smithi049.pzczis (mgr.14180) 1337 : cluster [DBG] pgmap v891: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.6 KiB/s rd, 0 B/s wr, 2 op/s 2024-02-22T22:49:27.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:27 smithi049 bash[14150]: audit 2024-02-22T22:49:26.242679+0000 mgr.smithi049.pzczis (mgr.14180) 1338 : audit [DBG] from='client.25281 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:49:28.025 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:49:28.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:27 smithi195 bash[18068]: audit 2024-02-22T22:49:26.242679+0000 mgr.smithi049.pzczis (mgr.14180) 1338 : audit [DBG] from='client.25281 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:49:28.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:28 smithi049 bash[14150]: cluster 2024-02-22T22:49:27.491215+0000 mgr.smithi049.pzczis (mgr.14180) 1339 : cluster [DBG] pgmap v892: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 15 KiB/s rd, 0 B/s wr, 24 op/s 2024-02-22T22:49:29.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:28 smithi195 bash[18068]: cluster 2024-02-22T22:49:27.491215+0000 mgr.smithi049.pzczis (mgr.14180) 1339 : cluster [DBG] pgmap v892: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 15 KiB/s rd, 0 B/s wr, 24 op/s 2024-02-22T22:49:30.837 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:30 smithi049 bash[14150]: cluster 2024-02-22T22:49:29.492122+0000 mgr.smithi049.pzczis (mgr.14180) 1340 : cluster [DBG] pgmap v893: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 16 KiB/s rd, 0 B/s wr, 25 op/s 2024-02-22T22:49:31.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:30 smithi195 bash[18068]: cluster 2024-02-22T22:49:29.492122+0000 mgr.smithi049.pzczis (mgr.14180) 1340 : cluster [DBG] pgmap v893: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 16 KiB/s rd, 0 B/s wr, 25 op/s 2024-02-22T22:49:31.262 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:49:31.263 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:33.597476Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.kthztr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\nDeploy daemon haproxy.nfs.foo.smithi195.kthztr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:48:37.446098Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fhyksq on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq\nDeploy daemon haproxy.nfs.foo.smithi049.fhyksq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:48:37.450737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.elbscq on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:37.452998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:49:31.987 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:49:32.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:32 smithi049 bash[14150]: audit 2024-02-22T22:49:31.254274+0000 mgr.smithi049.pzczis (mgr.14180) 1341 : audit [DBG] from='client.15588 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:49:32.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:32 smithi049 bash[14150]: cluster 2024-02-22T22:49:31.493964+0000 mgr.smithi049.pzczis (mgr.14180) 1342 : cluster [DBG] pgmap v894: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 40 KiB/s rd, 0 B/s wr, 67 op/s 2024-02-22T22:49:32.988 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:49:33.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:32 smithi195 bash[18068]: audit 2024-02-22T22:49:31.254274+0000 mgr.smithi049.pzczis (mgr.14180) 1341 : audit [DBG] from='client.15588 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:49:33.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:32 smithi195 bash[18068]: cluster 2024-02-22T22:49:31.493964+0000 mgr.smithi049.pzczis (mgr.14180) 1342 : cluster [DBG] pgmap v894: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 40 KiB/s rd, 0 B/s wr, 67 op/s 2024-02-22T22:49:34.690 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:34 smithi049 bash[14150]: cluster 2024-02-22T22:49:33.495681+0000 mgr.smithi049.pzczis (mgr.14180) 1343 : cluster [DBG] pgmap v895: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 40 KiB/s rd, 0 B/s wr, 67 op/s 2024-02-22T22:49:35.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:34 smithi195 bash[18068]: cluster 2024-02-22T22:49:33.495681+0000 mgr.smithi049.pzczis (mgr.14180) 1343 : cluster [DBG] pgmap v895: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 40 KiB/s rd, 0 B/s wr, 67 op/s 2024-02-22T22:49:36.341 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:49:36.341 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:33.597476Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.kthztr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\nDeploy daemon haproxy.nfs.foo.smithi195.kthztr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:48:37.446098Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fhyksq on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq\nDeploy daemon haproxy.nfs.foo.smithi049.fhyksq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:48:37.450737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.elbscq on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:37.452998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:49:36.690 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:36 smithi049 bash[14150]: cluster 2024-02-22T22:49:35.497251+0000 mgr.smithi049.pzczis (mgr.14180) 1344 : cluster [DBG] pgmap v896: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 40 KiB/s rd, 0 B/s wr, 67 op/s 2024-02-22T22:49:37.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:36 smithi195 bash[18068]: cluster 2024-02-22T22:49:35.497251+0000 mgr.smithi049.pzczis (mgr.14180) 1344 : cluster [DBG] pgmap v896: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 40 KiB/s rd, 0 B/s wr, 67 op/s 2024-02-22T22:49:37.091 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:49:37.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:37 smithi049 bash[14150]: audit 2024-02-22T22:49:36.331201+0000 mgr.smithi049.pzczis (mgr.14180) 1345 : audit [DBG] from='client.15592 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:49:37.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:37 smithi049 bash[14150]: audit 2024-02-22T22:49:37.457536+0000 mon.smithi049 (mon.0) 1006 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:49:38.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:37 smithi195 bash[18068]: audit 2024-02-22T22:49:36.331201+0000 mgr.smithi049.pzczis (mgr.14180) 1345 : audit [DBG] from='client.15592 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:49:38.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:37 smithi195 bash[18068]: audit 2024-02-22T22:49:37.457536+0000 mon.smithi049 (mon.0) 1006 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:49:38.092 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:49:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:38 smithi049 bash[14150]: cluster 2024-02-22T22:49:37.499049+0000 mgr.smithi049.pzczis (mgr.14180) 1346 : cluster [DBG] pgmap v897: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 39 KiB/s rd, 0 B/s wr, 64 op/s 2024-02-22T22:49:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:38 smithi049 bash[14150]: audit 2024-02-22T22:49:37.768240+0000 mon.smithi049 (mon.0) 1007 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:49:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:38 smithi049 bash[14150]: audit 2024-02-22T22:49:37.769550+0000 mon.smithi049 (mon.0) 1008 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:49:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:38 smithi049 bash[14150]: audit 2024-02-22T22:49:37.777787+0000 mon.smithi049 (mon.0) 1009 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:49:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:38 smithi049 bash[14150]: cluster 2024-02-22T22:49:37.778765+0000 mgr.smithi049.pzczis (mgr.14180) 1347 : cluster [DBG] pgmap v898: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 30 KiB/s rd, 0 B/s wr, 50 op/s 2024-02-22T22:49:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:38 smithi049 bash[14150]: audit 2024-02-22T22:49:37.784061+0000 mon.smithi049 (mon.0) 1010 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:49:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:38 smithi049 bash[14150]: audit 2024-02-22T22:49:37.800130+0000 mon.smithi049 (mon.0) 1011 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:49:38.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:38 smithi049 bash[14150]: cephadm 2024-02-22T22:49:37.805773+0000 mgr.smithi049.pzczis (mgr.14180) 1348 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.dexvcg on smithi195 2024-02-22T22:49:39.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:38 smithi195 bash[18068]: cluster 2024-02-22T22:49:37.499049+0000 mgr.smithi049.pzczis (mgr.14180) 1346 : cluster [DBG] pgmap v897: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 39 KiB/s rd, 0 B/s wr, 64 op/s 2024-02-22T22:49:39.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:38 smithi195 bash[18068]: audit 2024-02-22T22:49:37.768240+0000 mon.smithi049 (mon.0) 1007 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:49:39.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:38 smithi195 bash[18068]: audit 2024-02-22T22:49:37.769550+0000 mon.smithi049 (mon.0) 1008 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:49:39.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:38 smithi195 bash[18068]: audit 2024-02-22T22:49:37.777787+0000 mon.smithi049 (mon.0) 1009 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:49:39.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:38 smithi195 bash[18068]: cluster 2024-02-22T22:49:37.778765+0000 mgr.smithi049.pzczis (mgr.14180) 1347 : cluster [DBG] pgmap v898: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 30 KiB/s rd, 0 B/s wr, 50 op/s 2024-02-22T22:49:39.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:38 smithi195 bash[18068]: audit 2024-02-22T22:49:37.784061+0000 mon.smithi049 (mon.0) 1010 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:49:39.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:38 smithi195 bash[18068]: audit 2024-02-22T22:49:37.800130+0000 mon.smithi049 (mon.0) 1011 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:49:39.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:38 smithi195 bash[18068]: cephadm 2024-02-22T22:49:37.805773+0000 mgr.smithi049.pzczis (mgr.14180) 1348 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.dexvcg on smithi195 2024-02-22T22:49:39.690 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:39 smithi049 bash[14150]: cluster 2024-02-22T22:49:38.773990+0000 mon.smithi049 (mon.0) 1012 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:49:39.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:39 smithi049 bash[14150]: cluster 2024-02-22T22:49:38.774050+0000 mon.smithi049 (mon.0) 1013 : cluster [INF] Cluster is now healthy 2024-02-22T22:49:40.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:39 smithi195 bash[18068]: cluster 2024-02-22T22:49:38.773990+0000 mon.smithi049 (mon.0) 1012 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:49:40.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:39 smithi195 bash[18068]: cluster 2024-02-22T22:49:38.774050+0000 mon.smithi049 (mon.0) 1013 : cluster [INF] Cluster is now healthy 2024-02-22T22:49:40.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:40 smithi049 bash[14150]: cluster 2024-02-22T22:49:39.779207+0000 mgr.smithi049.pzczis (mgr.14180) 1349 : cluster [DBG] pgmap v899: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 29 KiB/s rd, 0 B/s wr, 48 op/s 2024-02-22T22:49:41.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:40 smithi195 bash[18068]: cluster 2024-02-22T22:49:39.779207+0000 mgr.smithi049.pzczis (mgr.14180) 1349 : cluster [DBG] pgmap v899: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 29 KiB/s rd, 0 B/s wr, 48 op/s 2024-02-22T22:49:41.214 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:49:41.214 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:47:29.336630Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gpadzp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:33.597476Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.kthztr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-kthztr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.kthztr\nDeploy daemon haproxy.nfs.foo.smithi195.kthztr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:48:37.446098Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.fhyksq on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-fhyksq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.fhyksq\nDeploy daemon haproxy.nfs.foo.smithi049.fhyksq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:48:37.450737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.elbscq on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:48:37.452998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:49:42.001 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:41 smithi049 bash[14150]: audit 2024-02-22T22:49:41.729915+0000 mon.smithi049 (mon.0) 1014 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.dexvcg"}]: dispatch 2024-02-22T22:49:42.002 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:49:42.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:41 smithi195 bash[18068]: audit 2024-02-22T22:49:41.729915+0000 mon.smithi049 (mon.0) 1014 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.dexvcg"}]: dispatch 2024-02-22T22:49:43.004 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:49:43.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: audit 2024-02-22T22:49:41.205726+0000 mgr.smithi049.pzczis (mgr.14180) 1350 : audit [DBG] from='client.15596 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:49:43.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: cephadm 2024-02-22T22:49:41.728932+0000 mgr.smithi049.pzczis (mgr.14180) 1351 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg 2024-02-22T22:49:43.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:49:43.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg 2024-02-22T22:49:43.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg 2024-02-22T22:49:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:49:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg 2024-02-22T22:49:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.dexvcg ... 2024-02-22T22:49:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:49:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:49:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:49:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:49:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:49:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:49:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:49:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:49:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:49:43.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:49:43.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg 2024-02-22T22:49:43.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:49:43.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg 2024-02-22T22:49:43.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg 2024-02-22T22:49:43.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:49:43.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg 2024-02-22T22:49:43.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.dexvcg ... 2024-02-22T22:49:43.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:49:43.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:49:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:49:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:49:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:49:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: cephadm 2024-02-22T22:49:41.729468+0000 mgr.smithi049.pzczis (mgr.14180) 1352 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.dexvcg 2024-02-22T22:49:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: cephadm 2024-02-22T22:49:41.731307+0000 mgr.smithi049.pzczis (mgr.14180) 1353 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.dexvcg on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg 2024-02-22T22:49:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:49:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg 2024-02-22T22:49:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg 2024-02-22T22:49:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:49:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg 2024-02-22T22:49:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.dexvcg ... 2024-02-22T22:49:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:49:43.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:49:43.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:49:43.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:49:43.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:49:43.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: cephadm 2024-02-22T22:49:41.735220+0000 mgr.smithi049.pzczis (mgr.14180) 1354 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.olkcjk on smithi049 2024-02-22T22:49:43.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:42 smithi195 bash[18068]: cluster 2024-02-22T22:49:41.780872+0000 mgr.smithi049.pzczis (mgr.14180) 1355 : cluster [DBG] pgmap v900: 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-22T22:49:43.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: audit 2024-02-22T22:49:41.205726+0000 mgr.smithi049.pzczis (mgr.14180) 1350 : audit [DBG] from='client.15596 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:49:43.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: cephadm 2024-02-22T22:49:41.728932+0000 mgr.smithi049.pzczis (mgr.14180) 1351 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg 2024-02-22T22:49:43.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:49:43.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg 2024-02-22T22:49:43.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg 2024-02-22T22:49:43.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:49:43.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg 2024-02-22T22:49:43.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.dexvcg ... 2024-02-22T22:49:43.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:49:43.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:49:43.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:49:43.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:49:43.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:49:43.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:49:43.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:49:43.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:49:43.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:49:43.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:49:43.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg 2024-02-22T22:49:43.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:49:43.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg 2024-02-22T22:49:43.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg 2024-02-22T22:49:43.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:49:43.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg 2024-02-22T22:49:43.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.dexvcg ... 2024-02-22T22:49:43.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:49:43.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:49:43.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:49:43.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:49:43.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:49:43.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: cephadm 2024-02-22T22:49:41.729468+0000 mgr.smithi049.pzczis (mgr.14180) 1352 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.dexvcg 2024-02-22T22:49:43.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: cephadm 2024-02-22T22:49:41.731307+0000 mgr.smithi049.pzczis (mgr.14180) 1353 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.dexvcg on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg 2024-02-22T22:49:43.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:49:43.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg 2024-02-22T22:49:43.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg 2024-02-22T22:49:43.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:49:43.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg 2024-02-22T22:49:43.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.dexvcg ... 2024-02-22T22:49:43.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:49:43.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:49:43.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:49:43.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:49:43.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:49:43.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: cephadm 2024-02-22T22:49:41.735220+0000 mgr.smithi049.pzczis (mgr.14180) 1354 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.olkcjk on smithi049 2024-02-22T22:49:43.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:42 smithi049 bash[14150]: cluster 2024-02-22T22:49:41.780872+0000 mgr.smithi049.pzczis (mgr.14180) 1355 : cluster [DBG] pgmap v900: 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-22T22:49:45.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:44 smithi195 bash[18068]: cluster 2024-02-22T22:49:43.781646+0000 mgr.smithi049.pzczis (mgr.14180) 1356 : cluster [DBG] pgmap v901: 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-22T22:49:45.080 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:44 smithi049 bash[14150]: cluster 2024-02-22T22:49:43.781646+0000 mgr.smithi049.pzczis (mgr.14180) 1356 : cluster [DBG] pgmap v901: 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-22T22:49:46.514 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:49:46.515 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:48:37.452998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:41.731071Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.dexvcg on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\nDeploy daemon haproxy.nfs.foo.smithi195.dexvcg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.876490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.olkcjk on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\nDeploy daemon haproxy.nfs.foo.smithi049.olkcjk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.880546Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.yuyimd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:49:46.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:46 smithi049 bash[14150]: cluster 2024-02-22T22:49:45.783143+0000 mgr.smithi049.pzczis (mgr.14180) 1357 : cluster [DBG] pgmap v902: 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-22T22:49:46.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:46 smithi049 bash[14150]: audit 2024-02-22T22:49:45.875263+0000 mon.smithi049 (mon.0) 1015 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.olkcjk"}]: dispatch 2024-02-22T22:49:47.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:46 smithi195 bash[18068]: cluster 2024-02-22T22:49:45.783143+0000 mgr.smithi049.pzczis (mgr.14180) 1357 : cluster [DBG] pgmap v902: 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-22T22:49:47.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:46 smithi195 bash[18068]: audit 2024-02-22T22:49:45.875263+0000 mon.smithi049 (mon.0) 1015 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.olkcjk"}]: dispatch 2024-02-22T22:49:47.378 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:49:48.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: cephadm 2024-02-22T22:49:45.874325+0000 mgr.smithi049.pzczis (mgr.14180) 1358 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk 2024-02-22T22:49:48.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:49:48.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk 2024-02-22T22:49:48.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk 2024-02-22T22:49:48.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:49:48.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk 2024-02-22T22:49:48.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.olkcjk ... 2024-02-22T22:49:48.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:49:48.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:49:48.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:49:48.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:49:48.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:49:48.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:49:48.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:49:48.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:49:48.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:49:48.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:49:48.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk 2024-02-22T22:49:48.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:49:48.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk 2024-02-22T22:49:48.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk 2024-02-22T22:49:48.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:49:48.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk 2024-02-22T22:49:48.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.olkcjk ... 2024-02-22T22:49:48.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:49:48.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:49:48.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:49:48.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:49:48.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:49:48.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: cephadm 2024-02-22T22:49:45.874642+0000 mgr.smithi049.pzczis (mgr.14180) 1359 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.olkcjk 2024-02-22T22:49:48.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: cephadm 2024-02-22T22:49:45.876730+0000 mgr.smithi049.pzczis (mgr.14180) 1360 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.olkcjk on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk 2024-02-22T22:49:48.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:49:48.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk 2024-02-22T22:49:48.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk 2024-02-22T22:49:48.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:49:48.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk 2024-02-22T22:49:48.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.olkcjk ... 2024-02-22T22:49:48.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:49:48.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:49:48.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:49:48.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:49:48.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:49:48.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: cephadm 2024-02-22T22:49:45.880744+0000 mgr.smithi049.pzczis (mgr.14180) 1361 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.yuyimd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:49:48.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: cephadm 2024-02-22T22:49:45.884056+0000 mgr.smithi049.pzczis (mgr.14180) 1362 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:49:48.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: cluster 2024-02-22T22:49:45.884977+0000 mgr.smithi049.pzczis (mgr.14180) 1363 : cluster [DBG] pgmap v903: 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 2024-02-22T22:49:48.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: audit 2024-02-22T22:49:46.507563+0000 mgr.smithi049.pzczis (mgr.14180) 1364 : audit [DBG] from='client.15600 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:49:48.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: cluster 2024-02-22T22:49:46.795326+0000 mon.smithi049 (mon.0) 1016 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:49:48.195 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:47 smithi049 bash[14150]: audit 2024-02-22T22:49:47.110157+0000 mon.smithi049 (mon.0) 1017 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:49:48.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: cephadm 2024-02-22T22:49:45.874325+0000 mgr.smithi049.pzczis (mgr.14180) 1358 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk 2024-02-22T22:49:48.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:49:48.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk 2024-02-22T22:49:48.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk 2024-02-22T22:49:48.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:49:48.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk 2024-02-22T22:49:48.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.olkcjk ... 2024-02-22T22:49:48.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:49:48.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:49:48.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:49:48.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:49:48.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:49:48.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:49:48.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:49:48.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:49:48.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:49:48.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:49:48.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk 2024-02-22T22:49:48.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:49:48.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk 2024-02-22T22:49:48.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk 2024-02-22T22:49:48.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:49:48.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk 2024-02-22T22:49:48.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.olkcjk ... 2024-02-22T22:49:48.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:49:48.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:49:48.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:49:48.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:49:48.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:49:48.204 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: cephadm 2024-02-22T22:49:45.874642+0000 mgr.smithi049.pzczis (mgr.14180) 1359 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.olkcjk 2024-02-22T22:49:48.204 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: cephadm 2024-02-22T22:49:45.876730+0000 mgr.smithi049.pzczis (mgr.14180) 1360 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.olkcjk on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk 2024-02-22T22:49:48.204 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:49:48.204 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk 2024-02-22T22:49:48.204 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk 2024-02-22T22:49:48.204 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:49:48.204 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk 2024-02-22T22:49:48.204 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.olkcjk ... 2024-02-22T22:49:48.204 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:49:48.204 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:49:48.204 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:49:48.204 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:49:48.204 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:49:48.205 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: cephadm 2024-02-22T22:49:45.880744+0000 mgr.smithi049.pzczis (mgr.14180) 1361 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.yuyimd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:49:48.205 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: cephadm 2024-02-22T22:49:45.884056+0000 mgr.smithi049.pzczis (mgr.14180) 1362 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:49:48.205 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: cluster 2024-02-22T22:49:45.884977+0000 mgr.smithi049.pzczis (mgr.14180) 1363 : cluster [DBG] pgmap v903: 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 2024-02-22T22:49:48.205 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: audit 2024-02-22T22:49:46.507563+0000 mgr.smithi049.pzczis (mgr.14180) 1364 : audit [DBG] from='client.15600 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:49:48.205 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: cluster 2024-02-22T22:49:46.795326+0000 mon.smithi049 (mon.0) 1016 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:49:48.205 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:47 smithi195 bash[18068]: audit 2024-02-22T22:49:47.110157+0000 mon.smithi049 (mon.0) 1017 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:49:48.380 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:49:50.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:49 smithi049 bash[14150]: cluster 2024-02-22T22:49:47.886743+0000 mgr.smithi049.pzczis (mgr.14180) 1365 : cluster [DBG] pgmap v904: 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-22T22:49:50.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:49 smithi195 bash[18068]: cluster 2024-02-22T22:49:47.886743+0000 mgr.smithi049.pzczis (mgr.14180) 1365 : cluster [DBG] pgmap v904: 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-22T22:49:51.708 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:49:51.708 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:48:37.452998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:41.731071Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.dexvcg on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\nDeploy daemon haproxy.nfs.foo.smithi195.dexvcg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.876490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.olkcjk on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\nDeploy daemon haproxy.nfs.foo.smithi049.olkcjk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.880546Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.yuyimd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:49:52.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:51 smithi049 bash[14150]: cluster 2024-02-22T22:49:49.887318+0000 mgr.smithi049.pzczis (mgr.14180) 1366 : cluster [DBG] pgmap v905: 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-22T22:49:52.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:51 smithi195 bash[18068]: cluster 2024-02-22T22:49:49.887318+0000 mgr.smithi049.pzczis (mgr.14180) 1366 : cluster [DBG] pgmap v905: 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-22T22:49:52.479 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:49:53.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:52 smithi049 bash[14150]: audit 2024-02-22T22:49:51.700818+0000 mgr.smithi049.pzczis (mgr.14180) 1367 : audit [DBG] from='client.15604 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:49:53.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:52 smithi195 bash[18068]: audit 2024-02-22T22:49:51.700818+0000 mgr.smithi049.pzczis (mgr.14180) 1367 : audit [DBG] from='client.15604 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:49:53.480 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:49:54.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:53 smithi049 bash[14150]: cluster 2024-02-22T22:49:51.889255+0000 mgr.smithi049.pzczis (mgr.14180) 1368 : cluster [DBG] pgmap v906: 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-22T22:49:54.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:53 smithi195 bash[18068]: cluster 2024-02-22T22:49:51.889255+0000 mgr.smithi049.pzczis (mgr.14180) 1368 : cluster [DBG] pgmap v906: 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-22T22:49:54.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:54 smithi049 bash[14150]: cluster 2024-02-22T22:49:53.891093+0000 mgr.smithi049.pzczis (mgr.14180) 1369 : cluster [DBG] pgmap v907: 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-22T22:49:55.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:54 smithi195 bash[18068]: cluster 2024-02-22T22:49:53.891093+0000 mgr.smithi049.pzczis (mgr.14180) 1369 : cluster [DBG] pgmap v907: 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-22T22:49:56.842 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:49:56.842 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:48:37.452998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:41.731071Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.dexvcg on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\nDeploy daemon haproxy.nfs.foo.smithi195.dexvcg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.876490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.olkcjk on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\nDeploy daemon haproxy.nfs.foo.smithi049.olkcjk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.880546Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.yuyimd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:49:57.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:56 smithi049 bash[14150]: cluster 2024-02-22T22:49:55.893024+0000 mgr.smithi049.pzczis (mgr.14180) 1370 : 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-22T22:49:57.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:56 smithi195 bash[18068]: cluster 2024-02-22T22:49:55.893024+0000 mgr.smithi049.pzczis (mgr.14180) 1370 : 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-22T22:49:57.619 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:49:58.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:57 smithi195 bash[18068]: audit 2024-02-22T22:49:56.834475+0000 mgr.smithi049.pzczis (mgr.14180) 1371 : audit [DBG] from='client.15608 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:49:58.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:57 smithi049 bash[14150]: audit 2024-02-22T22:49:56.834475+0000 mgr.smithi049.pzczis (mgr.14180) 1371 : audit [DBG] from='client.15608 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:49:58.620 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:49:59.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:49:58 smithi195 bash[18068]: cluster 2024-02-22T22:49:57.895151+0000 mgr.smithi049.pzczis (mgr.14180) 1372 : cluster [DBG] pgmap v909: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:49:59.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:49:58 smithi049 bash[14150]: cluster 2024-02-22T22:49:57.895151+0000 mgr.smithi049.pzczis (mgr.14180) 1372 : cluster [DBG] pgmap v909: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:50:01.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:00 smithi195 bash[18068]: cluster 2024-02-22T22:49:59.895828+0000 mgr.smithi049.pzczis (mgr.14180) 1373 : cluster [DBG] pgmap v910: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:50:01.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:00 smithi195 bash[18068]: cluster 2024-02-22T22:50:00.000152+0000 mon.smithi049 (mon.0) 1018 : cluster [WRN] overall HEALTH_WARN Failed to place 4 daemon(s) 2024-02-22T22:50:01.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:00 smithi049 bash[14150]: cluster 2024-02-22T22:49:59.895828+0000 mgr.smithi049.pzczis (mgr.14180) 1373 : cluster [DBG] pgmap v910: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:50:01.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:00 smithi049 bash[14150]: cluster 2024-02-22T22:50:00.000152+0000 mon.smithi049 (mon.0) 1018 : cluster [WRN] overall HEALTH_WARN Failed to place 4 daemon(s) 2024-02-22T22:50:01.894 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:50:01.894 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:48:37.452998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:41.731071Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.dexvcg on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\nDeploy daemon haproxy.nfs.foo.smithi195.dexvcg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.876490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.olkcjk on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\nDeploy daemon haproxy.nfs.foo.smithi049.olkcjk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.880546Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.yuyimd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:50:02.701 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:50:03.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:02 smithi195 bash[18068]: audit 2024-02-22T22:50:01.890814+0000 mgr.smithi049.pzczis (mgr.14180) 1374 : audit [DBG] from='client.15612 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:50:03.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:02 smithi195 bash[18068]: cluster 2024-02-22T22:50:01.897701+0000 mgr.smithi049.pzczis (mgr.14180) 1375 : cluster [DBG] pgmap v911: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:50:03.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:02 smithi049 bash[14150]: audit 2024-02-22T22:50:01.890814+0000 mgr.smithi049.pzczis (mgr.14180) 1374 : audit [DBG] from='client.15612 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:50:03.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:02 smithi049 bash[14150]: cluster 2024-02-22T22:50:01.897701+0000 mgr.smithi049.pzczis (mgr.14180) 1375 : cluster [DBG] pgmap v911: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:50:03.702 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:50:05.112 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:04 smithi049 bash[14150]: cluster 2024-02-22T22:50:03.899417+0000 mgr.smithi049.pzczis (mgr.14180) 1376 : cluster [DBG] pgmap v912: 225 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-22T22:50:05.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:04 smithi195 bash[18068]: cluster 2024-02-22T22:50:03.899417+0000 mgr.smithi049.pzczis (mgr.14180) 1376 : cluster [DBG] pgmap v912: 225 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-22T22:50:07.016 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:50:07.016 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:48:37.452998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:41.731071Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.dexvcg on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\nDeploy daemon haproxy.nfs.foo.smithi195.dexvcg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.876490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.olkcjk on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\nDeploy daemon haproxy.nfs.foo.smithi049.olkcjk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.880546Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.yuyimd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:50:07.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:06 smithi195 bash[18068]: cluster 2024-02-22T22:50:05.900875+0000 mgr.smithi049.pzczis (mgr.14180) 1377 : cluster [DBG] pgmap v913: 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-22T22:50:07.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:06 smithi049 bash[14150]: cluster 2024-02-22T22:50:05.900875+0000 mgr.smithi049.pzczis (mgr.14180) 1377 : cluster [DBG] pgmap v913: 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-22T22:50:07.741 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:50:08.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:07 smithi195 bash[18068]: audit 2024-02-22T22:50:07.012373+0000 mgr.smithi049.pzczis (mgr.14180) 1378 : audit [DBG] from='client.15616 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:50:08.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:07 smithi049 bash[14150]: audit 2024-02-22T22:50:07.012373+0000 mgr.smithi049.pzczis (mgr.14180) 1378 : audit [DBG] from='client.15616 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:50:08.741 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:50:09.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:09 smithi049 bash[14150]: cluster 2024-02-22T22:50:07.902487+0000 mgr.smithi049.pzczis (mgr.14180) 1379 : cluster [DBG] pgmap v914: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.1 KiB/s rd, 0 B/s wr, 3 op/s 2024-02-22T22:50:09.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:08 smithi195 bash[18068]: cluster 2024-02-22T22:50:07.902487+0000 mgr.smithi049.pzczis (mgr.14180) 1379 : cluster [DBG] pgmap v914: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.1 KiB/s rd, 0 B/s wr, 3 op/s 2024-02-22T22:50:11.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:11 smithi049 bash[14150]: cluster 2024-02-22T22:50:09.903535+0000 mgr.smithi049.pzczis (mgr.14180) 1380 : cluster [DBG] pgmap v915: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.1 KiB/s rd, 0 B/s wr, 3 op/s 2024-02-22T22:50:11.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:11 smithi195 bash[18068]: cluster 2024-02-22T22:50:09.903535+0000 mgr.smithi049.pzczis (mgr.14180) 1380 : cluster [DBG] pgmap v915: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.1 KiB/s rd, 0 B/s wr, 3 op/s 2024-02-22T22:50:11.936 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:50:11.937 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:48:37.452998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:41.731071Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.dexvcg on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\nDeploy daemon haproxy.nfs.foo.smithi195.dexvcg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.876490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.olkcjk on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\nDeploy daemon haproxy.nfs.foo.smithi049.olkcjk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.880546Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.yuyimd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:50:12.755 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:50:13.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:13 smithi195 bash[18068]: cluster 2024-02-22T22:50:11.905452+0000 mgr.smithi049.pzczis (mgr.14180) 1381 : cluster [DBG] pgmap v916: 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-22T22:50:13.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:13 smithi195 bash[18068]: audit 2024-02-22T22:50:11.930261+0000 mgr.smithi049.pzczis (mgr.14180) 1382 : audit [DBG] from='client.15620 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:50:13.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:13 smithi049 bash[14150]: cluster 2024-02-22T22:50:11.905452+0000 mgr.smithi049.pzczis (mgr.14180) 1381 : cluster [DBG] pgmap v916: 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-22T22:50:13.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:13 smithi049 bash[14150]: audit 2024-02-22T22:50:11.930261+0000 mgr.smithi049.pzczis (mgr.14180) 1382 : audit [DBG] from='client.15620 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:50:13.756 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:50:15.186 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:15 smithi049 bash[14150]: cluster 2024-02-22T22:50:13.906597+0000 mgr.smithi049.pzczis (mgr.14180) 1383 : cluster [DBG] pgmap v917: 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-22T22:50:15.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:15 smithi195 bash[18068]: cluster 2024-02-22T22:50:13.906597+0000 mgr.smithi049.pzczis (mgr.14180) 1383 : cluster [DBG] pgmap v917: 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-22T22:50:16.936 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:50:16.936 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:48:37.452998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:41.731071Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.dexvcg on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\nDeploy daemon haproxy.nfs.foo.smithi195.dexvcg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.876490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.olkcjk on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\nDeploy daemon haproxy.nfs.foo.smithi049.olkcjk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.880546Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.yuyimd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:50:17.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:17 smithi195 bash[18068]: cluster 2024-02-22T22:50:15.907864+0000 mgr.smithi049.pzczis (mgr.14180) 1384 : cluster [DBG] pgmap v918: 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-22T22:50:17.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:17 smithi049 bash[14150]: cluster 2024-02-22T22:50:15.907864+0000 mgr.smithi049.pzczis (mgr.14180) 1384 : cluster [DBG] pgmap v918: 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-22T22:50:17.773 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:50:18.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:18 smithi195 bash[18068]: audit 2024-02-22T22:50:16.933290+0000 mgr.smithi049.pzczis (mgr.14180) 1385 : audit [DBG] from='client.15624 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:50:18.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:18 smithi049 bash[14150]: audit 2024-02-22T22:50:16.933290+0000 mgr.smithi049.pzczis (mgr.14180) 1385 : audit [DBG] from='client.15624 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:50:18.774 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:50:19.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:19 smithi049 bash[14150]: cluster 2024-02-22T22:50:17.909484+0000 mgr.smithi049.pzczis (mgr.14180) 1386 : cluster [DBG] pgmap v919: 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-22T22:50:19.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:19 smithi195 bash[18068]: cluster 2024-02-22T22:50:17.909484+0000 mgr.smithi049.pzczis (mgr.14180) 1386 : cluster [DBG] pgmap v919: 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-22T22:50:21.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:21 smithi195 bash[18068]: cluster 2024-02-22T22:50:19.910363+0000 mgr.smithi049.pzczis (mgr.14180) 1387 : cluster [DBG] pgmap v920: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.1 KiB/s rd, 0 B/s wr, 3 op/s 2024-02-22T22:50:21.430 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:21 smithi049 bash[14150]: cluster 2024-02-22T22:50:19.910363+0000 mgr.smithi049.pzczis (mgr.14180) 1387 : cluster [DBG] pgmap v920: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.1 KiB/s rd, 0 B/s wr, 3 op/s 2024-02-22T22:50:21.857 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:50:21.857 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:48:37.452998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:41.731071Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.dexvcg on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\nDeploy daemon haproxy.nfs.foo.smithi195.dexvcg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.876490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.olkcjk on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\nDeploy daemon haproxy.nfs.foo.smithi049.olkcjk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.880546Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.yuyimd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:50:22.628 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:50:23.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:23 smithi195 bash[18068]: audit 2024-02-22T22:50:21.850203+0000 mgr.smithi049.pzczis (mgr.14180) 1388 : audit [DBG] from='client.15628 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:50:23.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:23 smithi195 bash[18068]: cluster 2024-02-22T22:50:21.911661+0000 mgr.smithi049.pzczis (mgr.14180) 1389 : cluster [DBG] pgmap v921: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.1 KiB/s rd, 0 B/s wr, 3 op/s 2024-02-22T22:50:23.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:23 smithi049 bash[14150]: audit 2024-02-22T22:50:21.850203+0000 mgr.smithi049.pzczis (mgr.14180) 1388 : audit [DBG] from='client.15628 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:50:23.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:23 smithi049 bash[14150]: cluster 2024-02-22T22:50:21.911661+0000 mgr.smithi049.pzczis (mgr.14180) 1389 : cluster [DBG] pgmap v921: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.1 KiB/s rd, 0 B/s wr, 3 op/s 2024-02-22T22:50:23.629 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:50:25.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:25 smithi049 bash[14150]: cluster 2024-02-22T22:50:23.913678+0000 mgr.smithi049.pzczis (mgr.14180) 1390 : cluster [DBG] pgmap v922: 225 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-22T22:50:25.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:25 smithi195 bash[18068]: cluster 2024-02-22T22:50:23.913678+0000 mgr.smithi049.pzczis (mgr.14180) 1390 : cluster [DBG] pgmap v922: 225 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-22T22:50:26.857 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:50:26.857 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:48:37.452998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:41.731071Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.dexvcg on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\nDeploy daemon haproxy.nfs.foo.smithi195.dexvcg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.876490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.olkcjk on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\nDeploy daemon haproxy.nfs.foo.smithi049.olkcjk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.880546Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.yuyimd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:50:27.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:27 smithi049 bash[14150]: cluster 2024-02-22T22:50:25.915688+0000 mgr.smithi049.pzczis (mgr.14180) 1391 : 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-22T22:50:27.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:27 smithi195 bash[18068]: cluster 2024-02-22T22:50:25.915688+0000 mgr.smithi049.pzczis (mgr.14180) 1391 : 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-22T22:50:27.664 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:50:28.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:28 smithi049 bash[14150]: audit 2024-02-22T22:50:26.848016+0000 mgr.smithi049.pzczis (mgr.14180) 1392 : audit [DBG] from='client.15632 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:50:28.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:28 smithi195 bash[18068]: audit 2024-02-22T22:50:26.848016+0000 mgr.smithi049.pzczis (mgr.14180) 1392 : audit [DBG] from='client.15632 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:50:28.665 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:50:29.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:29 smithi049 bash[14150]: cluster 2024-02-22T22:50:27.917302+0000 mgr.smithi049.pzczis (mgr.14180) 1393 : 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-22T22:50:29.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:29 smithi195 bash[18068]: cluster 2024-02-22T22:50:27.917302+0000 mgr.smithi049.pzczis (mgr.14180) 1393 : 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-22T22:50:31.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:31 smithi049 bash[14150]: cluster 2024-02-22T22:50:29.918197+0000 mgr.smithi049.pzczis (mgr.14180) 1394 : cluster [DBG] pgmap v925: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:50:31.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:31 smithi195 bash[18068]: cluster 2024-02-22T22:50:29.918197+0000 mgr.smithi049.pzczis (mgr.14180) 1394 : cluster [DBG] pgmap v925: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:50:31.970 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:50:31.970 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:48:37.452998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:41.731071Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.dexvcg on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\nDeploy daemon haproxy.nfs.foo.smithi195.dexvcg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.876490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.olkcjk on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\nDeploy daemon haproxy.nfs.foo.smithi049.olkcjk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.880546Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.yuyimd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:50:32.706 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:50:33.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:33 smithi049 bash[14150]: cluster 2024-02-22T22:50:31.919693+0000 mgr.smithi049.pzczis (mgr.14180) 1395 : 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-22T22:50:33.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:33 smithi049 bash[14150]: audit 2024-02-22T22:50:31.963470+0000 mgr.smithi049.pzczis (mgr.14180) 1396 : audit [DBG] from='client.15636 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:50:33.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:33 smithi195 bash[18068]: cluster 2024-02-22T22:50:31.919693+0000 mgr.smithi049.pzczis (mgr.14180) 1395 : 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-22T22:50:33.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:33 smithi195 bash[18068]: audit 2024-02-22T22:50:31.963470+0000 mgr.smithi049.pzczis (mgr.14180) 1396 : audit [DBG] from='client.15636 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:50:33.707 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:50:35.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:35 smithi049 bash[14150]: cluster 2024-02-22T22:50:33.920969+0000 mgr.smithi049.pzczis (mgr.14180) 1397 : cluster [DBG] pgmap v927: 225 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-22T22:50:35.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:35 smithi195 bash[18068]: cluster 2024-02-22T22:50:33.920969+0000 mgr.smithi049.pzczis (mgr.14180) 1397 : cluster [DBG] pgmap v927: 225 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-22T22:50:36.933 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:50:36.933 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:48:37.452998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:41.731071Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.dexvcg on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\nDeploy daemon haproxy.nfs.foo.smithi195.dexvcg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.876490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.olkcjk on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\nDeploy daemon haproxy.nfs.foo.smithi049.olkcjk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.880546Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.yuyimd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:50:37.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:37 smithi049 bash[14150]: cluster 2024-02-22T22:50:35.922068+0000 mgr.smithi049.pzczis (mgr.14180) 1398 : 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-22T22:50:37.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:37 smithi195 bash[18068]: cluster 2024-02-22T22:50:35.922068+0000 mgr.smithi049.pzczis (mgr.14180) 1398 : 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-22T22:50:37.645 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:50:38.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:38 smithi049 bash[14150]: audit 2024-02-22T22:50:36.926173+0000 mgr.smithi049.pzczis (mgr.14180) 1399 : audit [DBG] from='client.15640 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:50:38.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:38 smithi195 bash[18068]: audit 2024-02-22T22:50:36.926173+0000 mgr.smithi049.pzczis (mgr.14180) 1399 : audit [DBG] from='client.15640 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:50:38.646 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:50:39.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:39 smithi049 bash[14150]: cluster 2024-02-22T22:50:37.923255+0000 mgr.smithi049.pzczis (mgr.14180) 1400 : 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-22T22:50:39.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:39 smithi195 bash[18068]: cluster 2024-02-22T22:50:37.923255+0000 mgr.smithi049.pzczis (mgr.14180) 1400 : 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-22T22:50:41.378 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:41 smithi049 bash[14150]: cluster 2024-02-22T22:50:39.923905+0000 mgr.smithi049.pzczis (mgr.14180) 1401 : cluster [DBG] pgmap v930: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:50:41.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:41 smithi195 bash[18068]: cluster 2024-02-22T22:50:39.923905+0000 mgr.smithi049.pzczis (mgr.14180) 1401 : cluster [DBG] pgmap v930: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:50:41.785 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:50:41.785 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:48:37.452998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:41.731071Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.dexvcg on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\nDeploy daemon haproxy.nfs.foo.smithi195.dexvcg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.876490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.olkcjk on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\nDeploy daemon haproxy.nfs.foo.smithi049.olkcjk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.880546Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.yuyimd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:50:42.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:42 smithi049 bash[14150]: audit 2024-02-22T22:50:41.777215+0000 mgr.smithi049.pzczis (mgr.14180) 1402 : audit [DBG] from='client.15644 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:50:42.540 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:50:42.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:42 smithi195 bash[18068]: audit 2024-02-22T22:50:41.777215+0000 mgr.smithi049.pzczis (mgr.14180) 1402 : audit [DBG] from='client.15644 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:50:43.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:43 smithi049 bash[14150]: cluster 2024-02-22T22:50:41.925813+0000 mgr.smithi049.pzczis (mgr.14180) 1403 : 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-22T22:50:43.541 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:50:43.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:43 smithi195 bash[18068]: cluster 2024-02-22T22:50:41.925813+0000 mgr.smithi049.pzczis (mgr.14180) 1403 : 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-22T22:50:45.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:45 smithi049 bash[14150]: cluster 2024-02-22T22:50:43.927489+0000 mgr.smithi049.pzczis (mgr.14180) 1404 : cluster [DBG] pgmap v932: 225 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-22T22:50:45.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:45 smithi195 bash[18068]: cluster 2024-02-22T22:50:43.927489+0000 mgr.smithi049.pzczis (mgr.14180) 1404 : cluster [DBG] pgmap v932: 225 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-22T22:50:46.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:46 smithi049 bash[14150]: audit 2024-02-22T22:50:45.887662+0000 mon.smithi049 (mon.0) 1019 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:50:46.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:46 smithi195 bash[18068]: audit 2024-02-22T22:50:45.887662+0000 mon.smithi049 (mon.0) 1019 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:50:46.743 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:50:46.743 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:48:37.452998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kzbknz on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:41.731071Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.dexvcg on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\nDeploy daemon haproxy.nfs.foo.smithi195.dexvcg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.876490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.olkcjk on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\nDeploy daemon haproxy.nfs.foo.smithi049.olkcjk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.880546Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.yuyimd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:50:47.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:47 smithi049 bash[14150]: cluster 2024-02-22T22:50:45.929695+0000 mgr.smithi049.pzczis (mgr.14180) 1405 : 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-22T22:50:47.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:47 smithi049 bash[14150]: audit 2024-02-22T22:50:46.192975+0000 mon.smithi049 (mon.0) 1020 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:50:47.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:47 smithi049 bash[14150]: audit 2024-02-22T22:50:46.194397+0000 mon.smithi049 (mon.0) 1021 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:50:47.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:47 smithi049 bash[14150]: audit 2024-02-22T22:50:46.202599+0000 mon.smithi049 (mon.0) 1022 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:50:47.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:47 smithi049 bash[14150]: cluster 2024-02-22T22:50:46.203506+0000 mgr.smithi049.pzczis (mgr.14180) 1406 : cluster [DBG] pgmap v934: 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-22T22:50:47.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:47 smithi049 bash[14150]: audit 2024-02-22T22:50:46.209990+0000 mon.smithi049 (mon.0) 1023 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:50:47.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:47 smithi049 bash[14150]: audit 2024-02-22T22:50:46.224808+0000 mon.smithi049 (mon.0) 1024 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:50:47.441 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:47 smithi049 bash[14150]: cephadm 2024-02-22T22:50:46.229857+0000 mgr.smithi049.pzczis (mgr.14180) 1407 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.mniuop on smithi195 2024-02-22T22:50:47.442 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:47 smithi049 bash[14150]: audit 2024-02-22T22:50:46.735599+0000 mgr.smithi049.pzczis (mgr.14180) 1408 : audit [DBG] from='client.15648 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:50:47.453 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:50:47.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:47 smithi195 bash[18068]: cluster 2024-02-22T22:50:45.929695+0000 mgr.smithi049.pzczis (mgr.14180) 1405 : 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-22T22:50:47.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:47 smithi195 bash[18068]: audit 2024-02-22T22:50:46.192975+0000 mon.smithi049 (mon.0) 1020 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:50:47.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:47 smithi195 bash[18068]: audit 2024-02-22T22:50:46.194397+0000 mon.smithi049 (mon.0) 1021 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:50:47.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:47 smithi195 bash[18068]: audit 2024-02-22T22:50:46.202599+0000 mon.smithi049 (mon.0) 1022 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:50:47.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:47 smithi195 bash[18068]: cluster 2024-02-22T22:50:46.203506+0000 mgr.smithi049.pzczis (mgr.14180) 1406 : cluster [DBG] pgmap v934: 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-22T22:50:47.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:47 smithi195 bash[18068]: audit 2024-02-22T22:50:46.209990+0000 mon.smithi049 (mon.0) 1023 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:50:47.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:47 smithi195 bash[18068]: audit 2024-02-22T22:50:46.224808+0000 mon.smithi049 (mon.0) 1024 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:50:47.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:47 smithi195 bash[18068]: cephadm 2024-02-22T22:50:46.229857+0000 mgr.smithi049.pzczis (mgr.14180) 1407 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.mniuop on smithi195 2024-02-22T22:50:47.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:47 smithi195 bash[18068]: audit 2024-02-22T22:50:46.735599+0000 mgr.smithi049.pzczis (mgr.14180) 1408 : audit [DBG] from='client.15648 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:50:48.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:48 smithi049 bash[14150]: cluster 2024-02-22T22:50:47.198963+0000 mon.smithi049 (mon.0) 1025 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:50:48.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:48 smithi049 bash[14150]: cluster 2024-02-22T22:50:47.199021+0000 mon.smithi049 (mon.0) 1026 : cluster [INF] Cluster is now healthy 2024-02-22T22:50:48.455 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:50:48.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:48 smithi195 bash[18068]: cluster 2024-02-22T22:50:47.198963+0000 mon.smithi049 (mon.0) 1025 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:50:48.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:48 smithi195 bash[18068]: cluster 2024-02-22T22:50:47.199021+0000 mon.smithi049 (mon.0) 1026 : cluster [INF] Cluster is now healthy 2024-02-22T22:50:49.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:49 smithi049 bash[14150]: cluster 2024-02-22T22:50:48.204989+0000 mgr.smithi049.pzczis (mgr.14180) 1409 : cluster [DBG] pgmap v935: 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-22T22:50:49.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:49 smithi195 bash[18068]: cluster 2024-02-22T22:50:48.204989+0000 mgr.smithi049.pzczis (mgr.14180) 1409 : cluster [DBG] pgmap v935: 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-22T22:50:50.500 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:50 smithi049 bash[14150]: audit 2024-02-22T22:50:50.193812+0000 mon.smithi049 (mon.0) 1027 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.mniuop"}]: dispatch 2024-02-22T22:50:50.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:50 smithi195 bash[18068]: audit 2024-02-22T22:50:50.193812+0000 mon.smithi049 (mon.0) 1027 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.mniuop"}]: dispatch 2024-02-22T22:50:51.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: cephadm 2024-02-22T22:50:50.192831+0000 mgr.smithi049.pzczis (mgr.14180) 1410 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop 2024-02-22T22:50:51.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:50:51.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop 2024-02-22T22:50:51.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop 2024-02-22T22:50:51.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:50:51.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop 2024-02-22T22:50:51.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.mniuop ... 2024-02-22T22:50:51.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:50:51.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:50:51.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:50:51.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:50:51.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:50:51.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:50:51.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:50:51.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:50:51.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:50:51.554 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:50:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop 2024-02-22T22:50:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:50:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop 2024-02-22T22:50:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop 2024-02-22T22:50:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:50:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop 2024-02-22T22:50:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.mniuop ... 2024-02-22T22:50:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:50:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:50:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:50:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:50:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:50:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: cephadm 2024-02-22T22:50:50.193371+0000 mgr.smithi049.pzczis (mgr.14180) 1411 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.mniuop 2024-02-22T22:50:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: cephadm 2024-02-22T22:50:50.195032+0000 mgr.smithi049.pzczis (mgr.14180) 1412 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.mniuop on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop 2024-02-22T22:50:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:50:51.555 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop 2024-02-22T22:50:51.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop 2024-02-22T22:50:51.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:50:51.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop 2024-02-22T22:50:51.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.mniuop ... 2024-02-22T22:50:51.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:50:51.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:50:51.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:50:51.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:50:51.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:50:51.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: cephadm 2024-02-22T22:50:50.197736+0000 mgr.smithi049.pzczis (mgr.14180) 1413 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.mhajfy on smithi049 2024-02-22T22:50:51.556 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:51 smithi195 bash[18068]: cluster 2024-02-22T22:50:50.205572+0000 mgr.smithi049.pzczis (mgr.14180) 1414 : cluster [DBG] pgmap v936: 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-22T22:50:51.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: cephadm 2024-02-22T22:50:50.192831+0000 mgr.smithi049.pzczis (mgr.14180) 1410 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop 2024-02-22T22:50:51.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:50:51.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop 2024-02-22T22:50:51.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop 2024-02-22T22:50:51.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:50:51.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop 2024-02-22T22:50:51.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.mniuop ... 2024-02-22T22:50:51.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:50:51.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:50:51.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:50:51.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:50:51.691 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:50:51.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:50:51.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:50:51.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:50:51.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:50:51.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:50:51.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop 2024-02-22T22:50:51.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:50:51.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop 2024-02-22T22:50:51.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop 2024-02-22T22:50:51.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:50:51.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop 2024-02-22T22:50:51.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.mniuop ... 2024-02-22T22:50:51.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:50:51.692 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:50:51.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:50:51.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:50:51.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:50:51.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: cephadm 2024-02-22T22:50:50.193371+0000 mgr.smithi049.pzczis (mgr.14180) 1411 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.mniuop 2024-02-22T22:50:51.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: cephadm 2024-02-22T22:50:50.195032+0000 mgr.smithi049.pzczis (mgr.14180) 1412 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.mniuop on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop 2024-02-22T22:50:51.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:50:51.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop 2024-02-22T22:50:51.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop 2024-02-22T22:50:51.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:50:51.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop 2024-02-22T22:50:51.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.mniuop ... 2024-02-22T22:50:51.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:50:51.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:50:51.693 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:50:51.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:50:51.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:50:51.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: cephadm 2024-02-22T22:50:50.197736+0000 mgr.smithi049.pzczis (mgr.14180) 1413 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.mhajfy on smithi049 2024-02-22T22:50:51.694 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:51 smithi049 bash[14150]: cluster 2024-02-22T22:50:50.205572+0000 mgr.smithi049.pzczis (mgr.14180) 1414 : cluster [DBG] pgmap v936: 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-22T22:50:51.768 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:50:51.768 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:49:41.731071Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.dexvcg on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-dexvcg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.dexvcg\nDeploy daemon haproxy.nfs.foo.smithi195.dexvcg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.876490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.olkcjk on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-olkcjk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.olkcjk\nDeploy daemon haproxy.nfs.foo.smithi049.olkcjk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:49:45.880546Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.yuyimd on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:50.194855Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mniuop on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\nDeploy daemon haproxy.nfs.foo.smithi195.mniuop ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:50:52.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:52 smithi195 bash[18068]: audit 2024-02-22T22:50:51.760888+0000 mgr.smithi049.pzczis (mgr.14180) 1415 : audit [DBG] from='client.15652 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:50:52.642 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:52 smithi049 bash[14150]: audit 2024-02-22T22:50:51.760888+0000 mgr.smithi049.pzczis (mgr.14180) 1415 : audit [DBG] from='client.15652 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:50:52.643 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:50:53.644 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:50:53.843 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:53 smithi049 bash[14150]: cluster 2024-02-22T22:50:52.207471+0000 mgr.smithi049.pzczis (mgr.14180) 1416 : cluster [DBG] pgmap v937: 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-22T22:50:53.843 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:53 smithi049 bash[14150]: audit 2024-02-22T22:50:52.680445+0000 mon.smithi049 (mon.0) 1028 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:50:54.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:53 smithi195 bash[18068]: cluster 2024-02-22T22:50:52.207471+0000 mgr.smithi049.pzczis (mgr.14180) 1416 : cluster [DBG] pgmap v937: 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-22T22:50:54.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:53 smithi195 bash[18068]: audit 2024-02-22T22:50:52.680445+0000 mon.smithi049 (mon.0) 1028 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:50:54.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:54 smithi049 bash[14150]: audit 2024-02-22T22:50:54.086207+0000 mon.smithi049 (mon.0) 1029 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.mhajfy"}]: dispatch 2024-02-22T22:50:55.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:54 smithi195 bash[18068]: audit 2024-02-22T22:50:54.086207+0000 mon.smithi049 (mon.0) 1029 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.mhajfy"}]: dispatch 2024-02-22T22:50:55.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: cephadm 2024-02-22T22:50:54.085538+0000 mgr.smithi049.pzczis (mgr.14180) 1417 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy 2024-02-22T22:50:55.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:50:55.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy 2024-02-22T22:50:55.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy 2024-02-22T22:50:55.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:50:55.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy 2024-02-22T22:50:55.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.mhajfy ... 2024-02-22T22:50:55.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:50:55.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:50:55.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:50:55.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:50:55.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:50:55.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:50:55.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:50:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:50:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:50:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:50:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy 2024-02-22T22:50:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:50:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy 2024-02-22T22:50:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy 2024-02-22T22:50:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:50:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy 2024-02-22T22:50:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.mhajfy ... 2024-02-22T22:50:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:50:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:50:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:50:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:50:55.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:50:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: cephadm 2024-02-22T22:50:54.085787+0000 mgr.smithi049.pzczis (mgr.14180) 1418 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.mhajfy 2024-02-22T22:50:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: cephadm 2024-02-22T22:50:54.087099+0000 mgr.smithi049.pzczis (mgr.14180) 1419 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.mhajfy on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy 2024-02-22T22:50:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:50:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy 2024-02-22T22:50:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy 2024-02-22T22:50:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:50:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy 2024-02-22T22:50:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.mhajfy ... 2024-02-22T22:50:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:50:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:50:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:50:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:50:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:50:55.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: cephadm 2024-02-22T22:50:54.088937+0000 mgr.smithi049.pzczis (mgr.14180) 1420 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.zeqkas on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:50:55.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: cephadm 2024-02-22T22:50:54.090463+0000 mgr.smithi049.pzczis (mgr.14180) 1421 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:50:55.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: cluster 2024-02-22T22:50:54.091593+0000 mgr.smithi049.pzczis (mgr.14180) 1422 : cluster [DBG] pgmap v938: 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-22T22:50:55.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:55 smithi049 bash[14150]: cluster 2024-02-22T22:50:54.679896+0000 mon.smithi049 (mon.0) 1030 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:50:56.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: cephadm 2024-02-22T22:50:54.085538+0000 mgr.smithi049.pzczis (mgr.14180) 1417 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy 2024-02-22T22:50:56.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:50:56.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy 2024-02-22T22:50:56.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy 2024-02-22T22:50:56.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:50:56.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy 2024-02-22T22:50:56.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.mhajfy ... 2024-02-22T22:50:56.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:50:56.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:50:56.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:50:56.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:50:56.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:50:56.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:50:56.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:50:56.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:50:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:50:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:50:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy 2024-02-22T22:50:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:50:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy 2024-02-22T22:50:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy 2024-02-22T22:50:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:50:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy 2024-02-22T22:50:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.mhajfy ... 2024-02-22T22:50:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:50:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:50:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:50:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:50:56.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:50:56.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: cephadm 2024-02-22T22:50:54.085787+0000 mgr.smithi049.pzczis (mgr.14180) 1418 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.mhajfy 2024-02-22T22:50:56.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: cephadm 2024-02-22T22:50:54.087099+0000 mgr.smithi049.pzczis (mgr.14180) 1419 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.mhajfy on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy 2024-02-22T22:50:56.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:50:56.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy 2024-02-22T22:50:56.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy 2024-02-22T22:50:56.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:50:56.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy 2024-02-22T22:50:56.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.mhajfy ... 2024-02-22T22:50:56.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:50:56.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:50:56.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:50:56.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:50:56.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:50:56.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: cephadm 2024-02-22T22:50:54.088937+0000 mgr.smithi049.pzczis (mgr.14180) 1420 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.zeqkas on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:50:56.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: cephadm 2024-02-22T22:50:54.090463+0000 mgr.smithi049.pzczis (mgr.14180) 1421 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:50:56.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: cluster 2024-02-22T22:50:54.091593+0000 mgr.smithi049.pzczis (mgr.14180) 1422 : cluster [DBG] pgmap v938: 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-22T22:50:56.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:55 smithi195 bash[18068]: cluster 2024-02-22T22:50:54.679896+0000 mon.smithi049 (mon.0) 1030 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:50:57.200 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:50:57.201 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:50.194855Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mniuop on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\nDeploy daemon haproxy.nfs.foo.smithi195.mniuop ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.086977Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.mhajfy on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\nDeploy daemon haproxy.nfs.foo.smithi049.mhajfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.088842Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.zeqkas on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:50:57.957 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:57 smithi049 bash[14150]: cluster 2024-02-22T22:50:56.092833+0000 mgr.smithi049.pzczis (mgr.14180) 1423 : cluster [DBG] pgmap v939: 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-22T22:50:57.958 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:57 smithi049 bash[14150]: audit 2024-02-22T22:50:57.168387+0000 mon.smithi049 (mon.0) 1031 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:50:57.959 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:50:58.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:57 smithi195 bash[18068]: cluster 2024-02-22T22:50:56.092833+0000 mgr.smithi049.pzczis (mgr.14180) 1423 : cluster [DBG] pgmap v939: 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-22T22:50:58.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:57 smithi195 bash[18068]: audit 2024-02-22T22:50:57.168387+0000 mon.smithi049 (mon.0) 1031 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:50:58.959 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:50:58.972 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:58 smithi049 bash[14150]: audit 2024-02-22T22:50:57.194085+0000 mgr.smithi049.pzczis (mgr.14180) 1424 : audit [DBG] from='client.15656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:50:59.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:58 smithi195 bash[18068]: audit 2024-02-22T22:50:57.194085+0000 mgr.smithi049.pzczis (mgr.14180) 1424 : audit [DBG] from='client.15656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:51:00.038 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:50:59 smithi049 bash[14150]: cluster 2024-02-22T22:50:58.094499+0000 mgr.smithi049.pzczis (mgr.14180) 1425 : cluster [DBG] pgmap v940: 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-22T22:51:00.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:50:59 smithi195 bash[18068]: cluster 2024-02-22T22:50:58.094499+0000 mgr.smithi049.pzczis (mgr.14180) 1425 : cluster [DBG] pgmap v940: 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-22T22:51:01.911 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:51:01.911 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:50.194855Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mniuop on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\nDeploy daemon haproxy.nfs.foo.smithi195.mniuop ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.086977Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.mhajfy on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\nDeploy daemon haproxy.nfs.foo.smithi049.mhajfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.088842Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.zeqkas on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:51:01.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:01 smithi049 bash[14150]: cluster 2024-02-22T22:51:00.095225+0000 mgr.smithi049.pzczis (mgr.14180) 1426 : cluster [DBG] pgmap v941: 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-22T22:51:02.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:01 smithi195 bash[18068]: cluster 2024-02-22T22:51:00.095225+0000 mgr.smithi049.pzczis (mgr.14180) 1426 : cluster [DBG] pgmap v941: 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-22T22:51:02.689 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:51:03.690 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:51:04.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:03 smithi195 bash[18068]: audit 2024-02-22T22:51:01.907554+0000 mgr.smithi049.pzczis (mgr.14180) 1427 : audit [DBG] from='client.15660 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:51:04.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:03 smithi195 bash[18068]: cluster 2024-02-22T22:51:02.097128+0000 mgr.smithi049.pzczis (mgr.14180) 1428 : cluster [DBG] pgmap v942: 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-22T22:51:04.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:03 smithi049 bash[14150]: audit 2024-02-22T22:51:01.907554+0000 mgr.smithi049.pzczis (mgr.14180) 1427 : audit [DBG] from='client.15660 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:51:04.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:03 smithi049 bash[14150]: cluster 2024-02-22T22:51:02.097128+0000 mgr.smithi049.pzczis (mgr.14180) 1428 : cluster [DBG] pgmap v942: 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-22T22:51:05.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:05 smithi049 bash[14150]: cluster 2024-02-22T22:51:04.098247+0000 mgr.smithi049.pzczis (mgr.14180) 1429 : cluster [DBG] pgmap v943: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 172 B/s rd, 0 op/s 2024-02-22T22:51:06.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:05 smithi195 bash[18068]: cluster 2024-02-22T22:51:04.098247+0000 mgr.smithi049.pzczis (mgr.14180) 1429 : cluster [DBG] pgmap v943: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 172 B/s rd, 0 op/s 2024-02-22T22:51:06.946 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:51:06.947 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:50.194855Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mniuop on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\nDeploy daemon haproxy.nfs.foo.smithi195.mniuop ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.086977Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.mhajfy on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\nDeploy daemon haproxy.nfs.foo.smithi049.mhajfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.088842Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.zeqkas on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:51:07.753 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:51:08.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:07 smithi195 bash[18068]: cluster 2024-02-22T22:51:06.099366+0000 mgr.smithi049.pzczis (mgr.14180) 1430 : cluster [DBG] pgmap v944: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:51:08.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:07 smithi195 bash[18068]: audit 2024-02-22T22:51:07.680657+0000 mon.smithi049 (mon.0) 1032 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:51:08.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:07 smithi049 bash[14150]: cluster 2024-02-22T22:51:06.099366+0000 mgr.smithi049.pzczis (mgr.14180) 1430 : cluster [DBG] pgmap v944: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:51:08.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:07 smithi049 bash[14150]: audit 2024-02-22T22:51:07.680657+0000 mon.smithi049 (mon.0) 1032 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:51:08.755 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:51:09.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:08 smithi195 bash[18068]: audit 2024-02-22T22:51:06.938960+0000 mgr.smithi049.pzczis (mgr.14180) 1431 : audit [DBG] from='client.15664 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:51:09.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:08 smithi049 bash[14150]: audit 2024-02-22T22:51:06.938960+0000 mgr.smithi049.pzczis (mgr.14180) 1431 : audit [DBG] from='client.15664 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:51:10.006 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:09 smithi049 bash[14150]: cluster 2024-02-22T22:51:08.100978+0000 mgr.smithi049.pzczis (mgr.14180) 1432 : cluster [DBG] pgmap v945: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:51:10.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:09 smithi195 bash[18068]: cluster 2024-02-22T22:51:08.100978+0000 mgr.smithi049.pzczis (mgr.14180) 1432 : cluster [DBG] pgmap v945: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:51:11.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:11 smithi049 bash[14150]: cluster 2024-02-22T22:51:10.101637+0000 mgr.smithi049.pzczis (mgr.14180) 1433 : cluster [DBG] pgmap v946: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:51:12.007 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:51:12.007 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:50.194855Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mniuop on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\nDeploy daemon haproxy.nfs.foo.smithi195.mniuop ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.086977Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.mhajfy on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\nDeploy daemon haproxy.nfs.foo.smithi049.mhajfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.088842Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.zeqkas on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:51:12.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:11 smithi195 bash[18068]: cluster 2024-02-22T22:51:10.101637+0000 mgr.smithi049.pzczis (mgr.14180) 1433 : cluster [DBG] pgmap v946: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:51:12.767 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:51:13.768 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:51:14.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:13 smithi195 bash[18068]: audit 2024-02-22T22:51:12.004316+0000 mgr.smithi049.pzczis (mgr.14180) 1434 : audit [DBG] from='client.15668 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:51:14.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:13 smithi195 bash[18068]: cluster 2024-02-22T22:51:12.103526+0000 mgr.smithi049.pzczis (mgr.14180) 1435 : cluster [DBG] pgmap v947: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:51:14.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:13 smithi049 bash[14150]: audit 2024-02-22T22:51:12.004316+0000 mgr.smithi049.pzczis (mgr.14180) 1434 : audit [DBG] from='client.15668 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:51:14.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:13 smithi049 bash[14150]: cluster 2024-02-22T22:51:12.103526+0000 mgr.smithi049.pzczis (mgr.14180) 1435 : cluster [DBG] pgmap v947: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:51:16.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:15 smithi195 bash[18068]: cluster 2024-02-22T22:51:14.104667+0000 mgr.smithi049.pzczis (mgr.14180) 1436 : cluster [DBG] pgmap v948: 225 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-22T22:51:16.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:15 smithi049 bash[14150]: cluster 2024-02-22T22:51:14.104667+0000 mgr.smithi049.pzczis (mgr.14180) 1436 : cluster [DBG] pgmap v948: 225 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-22T22:51:17.182 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:51:17.182 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:50.194855Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mniuop on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\nDeploy daemon haproxy.nfs.foo.smithi195.mniuop ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.086977Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.mhajfy on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\nDeploy daemon haproxy.nfs.foo.smithi049.mhajfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.088842Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.zeqkas on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:51:17.890 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:51:18.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:17 smithi195 bash[18068]: cluster 2024-02-22T22:51:16.106726+0000 mgr.smithi049.pzczis (mgr.14180) 1437 : cluster [DBG] pgmap v949: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:51:18.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:17 smithi049 bash[14150]: cluster 2024-02-22T22:51:16.106726+0000 mgr.smithi049.pzczis (mgr.14180) 1437 : cluster [DBG] pgmap v949: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:51:18.891 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:51:19.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:18 smithi195 bash[18068]: audit 2024-02-22T22:51:17.179611+0000 mgr.smithi049.pzczis (mgr.14180) 1438 : audit [DBG] from='client.15672 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:51:19.099 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:18 smithi049 bash[14150]: audit 2024-02-22T22:51:17.179611+0000 mgr.smithi049.pzczis (mgr.14180) 1438 : audit [DBG] from='client.15672 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:51:20.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:19 smithi195 bash[18068]: cluster 2024-02-22T22:51:18.108342+0000 mgr.smithi049.pzczis (mgr.14180) 1439 : cluster [DBG] pgmap v950: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:51:20.126 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:19 smithi049 bash[14150]: cluster 2024-02-22T22:51:18.108342+0000 mgr.smithi049.pzczis (mgr.14180) 1439 : cluster [DBG] pgmap v950: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:51:21.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:21 smithi049 bash[14150]: cluster 2024-02-22T22:51:20.109080+0000 mgr.smithi049.pzczis (mgr.14180) 1440 : cluster [DBG] pgmap v951: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:51:22.001 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:51:22.001 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:50.194855Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mniuop on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\nDeploy daemon haproxy.nfs.foo.smithi195.mniuop ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.086977Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.mhajfy on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\nDeploy daemon haproxy.nfs.foo.smithi049.mhajfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.088842Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.zeqkas on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:51:22.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:21 smithi195 bash[18068]: cluster 2024-02-22T22:51:20.109080+0000 mgr.smithi049.pzczis (mgr.14180) 1440 : cluster [DBG] pgmap v951: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:51:22.730 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:51:23.731 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:51:24.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:23 smithi195 bash[18068]: audit 2024-02-22T22:51:21.992313+0000 mgr.smithi049.pzczis (mgr.14180) 1441 : audit [DBG] from='client.15676 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:51:24.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:23 smithi195 bash[18068]: cluster 2024-02-22T22:51:22.110779+0000 mgr.smithi049.pzczis (mgr.14180) 1442 : cluster [DBG] pgmap v952: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:51:24.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:23 smithi049 bash[14150]: audit 2024-02-22T22:51:21.992313+0000 mgr.smithi049.pzczis (mgr.14180) 1441 : audit [DBG] from='client.15676 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:51:24.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:23 smithi049 bash[14150]: cluster 2024-02-22T22:51:22.110779+0000 mgr.smithi049.pzczis (mgr.14180) 1442 : cluster [DBG] pgmap v952: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:51:25.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:25 smithi049 bash[14150]: cluster 2024-02-22T22:51:24.112525+0000 mgr.smithi049.pzczis (mgr.14180) 1443 : cluster [DBG] pgmap v953: 225 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-22T22:51:26.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:25 smithi195 bash[18068]: cluster 2024-02-22T22:51:24.112525+0000 mgr.smithi049.pzczis (mgr.14180) 1443 : cluster [DBG] pgmap v953: 225 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-22T22:51:26.736 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:51:26.736 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:50.194855Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mniuop on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\nDeploy daemon haproxy.nfs.foo.smithi195.mniuop ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.086977Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.mhajfy on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\nDeploy daemon haproxy.nfs.foo.smithi049.mhajfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.088842Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.zeqkas on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:51:27.477 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:51:28.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:27 smithi049 bash[14150]: cluster 2024-02-22T22:51:26.113714+0000 mgr.smithi049.pzczis (mgr.14180) 1444 : 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-22T22:51:28.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:27 smithi049 bash[14150]: audit 2024-02-22T22:51:26.731728+0000 mgr.smithi049.pzczis (mgr.14180) 1445 : audit [DBG] from='client.15680 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:51:28.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:27 smithi195 bash[18068]: cluster 2024-02-22T22:51:26.113714+0000 mgr.smithi049.pzczis (mgr.14180) 1444 : 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-22T22:51:28.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:27 smithi195 bash[18068]: audit 2024-02-22T22:51:26.731728+0000 mgr.smithi049.pzczis (mgr.14180) 1445 : audit [DBG] from='client.15680 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:51:28.478 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:51:30.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:29 smithi049 bash[14150]: cluster 2024-02-22T22:51:28.115389+0000 mgr.smithi049.pzczis (mgr.14180) 1446 : 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-22T22:51:30.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:29 smithi195 bash[18068]: cluster 2024-02-22T22:51:28.115389+0000 mgr.smithi049.pzczis (mgr.14180) 1446 : 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-22T22:51:31.862 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:51:31.862 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:50.194855Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mniuop on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\nDeploy daemon haproxy.nfs.foo.smithi195.mniuop ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.086977Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.mhajfy on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\nDeploy daemon haproxy.nfs.foo.smithi049.mhajfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.088842Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.zeqkas on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:51:32.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:31 smithi049 bash[14150]: cluster 2024-02-22T22:51:30.116175+0000 mgr.smithi049.pzczis (mgr.14180) 1447 : 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-22T22:51:32.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:31 smithi195 bash[18068]: cluster 2024-02-22T22:51:30.116175+0000 mgr.smithi049.pzczis (mgr.14180) 1447 : 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-22T22:51:32.677 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:51:33.679 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:51:34.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:33 smithi049 bash[14150]: audit 2024-02-22T22:51:31.853797+0000 mgr.smithi049.pzczis (mgr.14180) 1448 : audit [DBG] from='client.15684 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:51:34.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:33 smithi049 bash[14150]: cluster 2024-02-22T22:51:32.118158+0000 mgr.smithi049.pzczis (mgr.14180) 1449 : cluster [DBG] pgmap v957: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:51:34.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:33 smithi195 bash[18068]: audit 2024-02-22T22:51:31.853797+0000 mgr.smithi049.pzczis (mgr.14180) 1448 : audit [DBG] from='client.15684 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:51:34.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:33 smithi195 bash[18068]: cluster 2024-02-22T22:51:32.118158+0000 mgr.smithi049.pzczis (mgr.14180) 1449 : cluster [DBG] pgmap v957: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:51:36.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:35 smithi049 bash[14150]: cluster 2024-02-22T22:51:34.119489+0000 mgr.smithi049.pzczis (mgr.14180) 1450 : cluster [DBG] pgmap v958: 225 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-22T22:51:36.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:35 smithi195 bash[18068]: cluster 2024-02-22T22:51:34.119489+0000 mgr.smithi049.pzczis (mgr.14180) 1450 : cluster [DBG] pgmap v958: 225 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-22T22:51:36.960 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:51:36.960 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:50.194855Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mniuop on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\nDeploy daemon haproxy.nfs.foo.smithi195.mniuop ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.086977Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.mhajfy on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\nDeploy daemon haproxy.nfs.foo.smithi049.mhajfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.088842Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.zeqkas on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:51:37.734 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:51:38.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:37 smithi049 bash[14150]: cluster 2024-02-22T22:51:36.121451+0000 mgr.smithi049.pzczis (mgr.14180) 1451 : 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-22T22:51:38.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:37 smithi195 bash[18068]: cluster 2024-02-22T22:51:36.121451+0000 mgr.smithi049.pzczis (mgr.14180) 1451 : 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-22T22:51:38.736 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:51:39.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:38 smithi049 bash[14150]: audit 2024-02-22T22:51:36.956822+0000 mgr.smithi049.pzczis (mgr.14180) 1452 : audit [DBG] from='client.15688 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:51:39.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:38 smithi195 bash[18068]: audit 2024-02-22T22:51:36.956822+0000 mgr.smithi049.pzczis (mgr.14180) 1452 : audit [DBG] from='client.15688 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:51:40.139 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:39 smithi049 bash[14150]: cluster 2024-02-22T22:51:38.123033+0000 mgr.smithi049.pzczis (mgr.14180) 1453 : 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-22T22:51:40.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:39 smithi195 bash[18068]: cluster 2024-02-22T22:51:38.123033+0000 mgr.smithi049.pzczis (mgr.14180) 1453 : 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-22T22:51:41.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:40 smithi049 bash[14150]: cluster 2024-02-22T22:51:40.124197+0000 mgr.smithi049.pzczis (mgr.14180) 1454 : 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-22T22:51:41.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:40 smithi195 bash[18068]: cluster 2024-02-22T22:51:40.124197+0000 mgr.smithi049.pzczis (mgr.14180) 1454 : 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-22T22:51:41.965 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:51:41.965 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:50.194855Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mniuop on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\nDeploy daemon haproxy.nfs.foo.smithi195.mniuop ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.086977Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.mhajfy on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\nDeploy daemon haproxy.nfs.foo.smithi049.mhajfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.088842Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.zeqkas on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:51:42.760 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:51:43.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:43 smithi049 bash[14150]: audit 2024-02-22T22:51:41.958861+0000 mgr.smithi049.pzczis (mgr.14180) 1455 : audit [DBG] from='client.15692 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:51:43.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:43 smithi049 bash[14150]: cluster 2024-02-22T22:51:42.125307+0000 mgr.smithi049.pzczis (mgr.14180) 1456 : cluster [DBG] pgmap v962: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:51:43.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:43 smithi195 bash[18068]: audit 2024-02-22T22:51:41.958861+0000 mgr.smithi049.pzczis (mgr.14180) 1455 : audit [DBG] from='client.15692 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:51:43.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:43 smithi195 bash[18068]: cluster 2024-02-22T22:51:42.125307+0000 mgr.smithi049.pzczis (mgr.14180) 1456 : cluster [DBG] pgmap v962: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:51:43.761 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:51:45.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:45 smithi049 bash[14150]: cluster 2024-02-22T22:51:44.127043+0000 mgr.smithi049.pzczis (mgr.14180) 1457 : cluster [DBG] pgmap v963: 225 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-22T22:51:45.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:45 smithi195 bash[18068]: cluster 2024-02-22T22:51:44.127043+0000 mgr.smithi049.pzczis (mgr.14180) 1457 : cluster [DBG] pgmap v963: 225 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-22T22:51:47.053 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:51:47.054 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:50.194855Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mniuop on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\nDeploy daemon haproxy.nfs.foo.smithi195.mniuop ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.086977Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.mhajfy on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\nDeploy daemon haproxy.nfs.foo.smithi049.mhajfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.088842Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.zeqkas on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:51:47.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:47 smithi049 bash[14150]: cluster 2024-02-22T22:51:46.128451+0000 mgr.smithi049.pzczis (mgr.14180) 1458 : 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-22T22:51:47.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:47 smithi195 bash[18068]: cluster 2024-02-22T22:51:46.128451+0000 mgr.smithi049.pzczis (mgr.14180) 1458 : 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-22T22:51:47.779 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:51:48.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:48 smithi195 bash[18068]: audit 2024-02-22T22:51:47.046878+0000 mgr.smithi049.pzczis (mgr.14180) 1459 : audit [DBG] from='client.15696 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:51:48.690 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:48 smithi049 bash[14150]: audit 2024-02-22T22:51:47.046878+0000 mgr.smithi049.pzczis (mgr.14180) 1459 : audit [DBG] from='client.15696 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:51:48.780 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:51:49.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:49 smithi049 bash[14150]: cluster 2024-02-22T22:51:48.130041+0000 mgr.smithi049.pzczis (mgr.14180) 1460 : 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-22T22:51:49.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:49 smithi195 bash[18068]: cluster 2024-02-22T22:51:48.130041+0000 mgr.smithi049.pzczis (mgr.14180) 1460 : 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-22T22:51:51.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:51 smithi049 bash[14150]: cluster 2024-02-22T22:51:50.131176+0000 mgr.smithi049.pzczis (mgr.14180) 1461 : 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-22T22:51:51.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:51 smithi195 bash[18068]: cluster 2024-02-22T22:51:50.131176+0000 mgr.smithi049.pzczis (mgr.14180) 1461 : 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-22T22:51:52.182 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:51:52.182 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:50.194855Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mniuop on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\nDeploy daemon haproxy.nfs.foo.smithi195.mniuop ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.086977Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.mhajfy on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\nDeploy daemon haproxy.nfs.foo.smithi049.mhajfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.088842Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.zeqkas on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:51:52.895 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:51:53.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:53 smithi195 bash[18068]: cluster 2024-02-22T22:51:52.133025+0000 mgr.smithi049.pzczis (mgr.14180) 1462 : cluster [DBG] pgmap v967: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:51:53.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:53 smithi195 bash[18068]: audit 2024-02-22T22:51:52.179076+0000 mgr.smithi049.pzczis (mgr.14180) 1463 : audit [DBG] from='client.15700 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:51:53.690 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:53 smithi049 bash[14150]: cluster 2024-02-22T22:51:52.133025+0000 mgr.smithi049.pzczis (mgr.14180) 1462 : cluster [DBG] pgmap v967: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:51:53.690 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:53 smithi049 bash[14150]: audit 2024-02-22T22:51:52.179076+0000 mgr.smithi049.pzczis (mgr.14180) 1463 : audit [DBG] from='client.15700 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:51:53.896 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:51:54.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:54 smithi195 bash[18068]: audit 2024-02-22T22:51:54.094108+0000 mon.smithi049 (mon.0) 1033 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:51:54.690 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:54 smithi049 bash[14150]: audit 2024-02-22T22:51:54.094108+0000 mon.smithi049 (mon.0) 1033 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:51:55.410 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:55 smithi049 bash[14150]: cluster 2024-02-22T22:51:54.134609+0000 mgr.smithi049.pzczis (mgr.14180) 1464 : cluster [DBG] pgmap v968: 225 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-22T22:51:55.411 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:55 smithi049 bash[14150]: audit 2024-02-22T22:51:54.342288+0000 mon.smithi049 (mon.0) 1034 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:51:55.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:55 smithi195 bash[18068]: cluster 2024-02-22T22:51:54.134609+0000 mgr.smithi049.pzczis (mgr.14180) 1464 : cluster [DBG] pgmap v968: 225 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-22T22:51:55.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:55 smithi195 bash[18068]: audit 2024-02-22T22:51:54.342288+0000 mon.smithi049 (mon.0) 1034 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:51:57.173 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:51:57.174 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:41:32.996062Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:50.194855Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mniuop on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\nDeploy daemon haproxy.nfs.foo.smithi195.mniuop ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.086977Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.mhajfy on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\nDeploy daemon haproxy.nfs.foo.smithi049.mhajfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.088842Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.zeqkas on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:41:32.996468Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:41:32.996729Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:41:32.996974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:41:32.997218Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:41:32.998179Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:51:57.690 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:57 smithi049 bash[14150]: cluster 2024-02-22T22:51:56.136716+0000 mgr.smithi049.pzczis (mgr.14180) 1465 : 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-22T22:51:57.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:57 smithi195 bash[18068]: cluster 2024-02-22T22:51:56.136716+0000 mgr.smithi049.pzczis (mgr.14180) 1465 : 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-22T22:51:57.934 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:51:58.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:58 smithi195 bash[18068]: audit 2024-02-22T22:51:57.165651+0000 mgr.smithi049.pzczis (mgr.14180) 1466 : audit [DBG] from='client.15704 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:51:58.690 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:58 smithi049 bash[14150]: audit 2024-02-22T22:51:57.165651+0000 mgr.smithi049.pzczis (mgr.14180) 1466 : audit [DBG] from='client.15704 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:51:58.934 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:51:59.690 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:51:59 smithi049 bash[14150]: cluster 2024-02-22T22:51:58.138306+0000 mgr.smithi049.pzczis (mgr.14180) 1467 : 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-22T22:51:59.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:51:59 smithi195 bash[18068]: cluster 2024-02-22T22:51:58.138306+0000 mgr.smithi049.pzczis (mgr.14180) 1467 : 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-22T22:52:00.902 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:00 smithi049 bash[14150]: audit 2024-02-22T22:51:59.580777+0000 mon.smithi049 (mon.0) 1035 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:52:00.902 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:00 smithi049 bash[14150]: audit 2024-02-22T22:51:59.877056+0000 mon.smithi049 (mon.0) 1036 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:52:00.902 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:00 smithi049 bash[14150]: audit 2024-02-22T22:51:59.878705+0000 mon.smithi049 (mon.0) 1037 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:52:00.902 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:00 smithi049 bash[14150]: audit 2024-02-22T22:51:59.886902+0000 mon.smithi049 (mon.0) 1038 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:52:00.902 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:00 smithi049 bash[14150]: audit 2024-02-22T22:51:59.896061+0000 mon.smithi049 (mon.0) 1039 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:52:00.902 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:00 smithi049 bash[14150]: audit 2024-02-22T22:51:59.906594+0000 mon.smithi049 (mon.0) 1040 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:52:01.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:00 smithi195 bash[18068]: audit 2024-02-22T22:51:59.580777+0000 mon.smithi049 (mon.0) 1035 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:52:01.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:00 smithi195 bash[18068]: audit 2024-02-22T22:51:59.877056+0000 mon.smithi049 (mon.0) 1036 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:52:01.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:00 smithi195 bash[18068]: audit 2024-02-22T22:51:59.878705+0000 mon.smithi049 (mon.0) 1037 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:52:01.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:00 smithi195 bash[18068]: audit 2024-02-22T22:51:59.886902+0000 mon.smithi049 (mon.0) 1038 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:52:01.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:00 smithi195 bash[18068]: audit 2024-02-22T22:51:59.896061+0000 mon.smithi049 (mon.0) 1039 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:52:01.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:00 smithi195 bash[18068]: audit 2024-02-22T22:51:59.906594+0000 mon.smithi049 (mon.0) 1040 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:52:01.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:01 smithi049 bash[14150]: cluster 2024-02-22T22:51:59.887946+0000 mgr.smithi049.pzczis (mgr.14180) 1468 : cluster [DBG] pgmap v971: 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-22T22:52:01.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:01 smithi049 bash[14150]: cephadm 2024-02-22T22:51:59.909799+0000 mgr.smithi049.pzczis (mgr.14180) 1469 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.lijmoy on smithi195 2024-02-22T22:52:01.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:01 smithi049 bash[14150]: cluster 2024-02-22T22:52:00.883055+0000 mon.smithi049 (mon.0) 1041 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:52:01.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:01 smithi049 bash[14150]: cluster 2024-02-22T22:52:00.883152+0000 mon.smithi049 (mon.0) 1042 : cluster [INF] Cluster is now healthy 2024-02-22T22:52:02.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:01 smithi195 bash[18068]: cluster 2024-02-22T22:51:59.887946+0000 mgr.smithi049.pzczis (mgr.14180) 1468 : cluster [DBG] pgmap v971: 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-22T22:52:02.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:01 smithi195 bash[18068]: cephadm 2024-02-22T22:51:59.909799+0000 mgr.smithi049.pzczis (mgr.14180) 1469 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.lijmoy on smithi195 2024-02-22T22:52:02.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:01 smithi195 bash[18068]: cluster 2024-02-22T22:52:00.883055+0000 mon.smithi049 (mon.0) 1041 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:52:02.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:01 smithi195 bash[18068]: cluster 2024-02-22T22:52:00.883152+0000 mon.smithi049 (mon.0) 1042 : cluster [INF] Cluster is now healthy 2024-02-22T22:52:02.207 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:52:02.207 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:42:47.161693Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:49:45.883955Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.tvaanl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:50.194855Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mniuop on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\nDeploy daemon haproxy.nfs.foo.smithi195.mniuop ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.086977Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.mhajfy on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\nDeploy daemon haproxy.nfs.foo.smithi049.mhajfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.088842Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.zeqkas on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:42:47.161443Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:42:47.161233Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:42:47.161974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:42:47.162324Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:42:47.162981Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:52:03.007 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:52:03.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:03 smithi049 bash[14150]: cluster 2024-02-22T22:52:01.889630+0000 mgr.smithi049.pzczis (mgr.14180) 1470 : cluster [DBG] pgmap v972: 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-22T22:52:03.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:03 smithi049 bash[14150]: audit 2024-02-22T22:52:02.204823+0000 mgr.smithi049.pzczis (mgr.14180) 1471 : audit [DBG] from='client.15708 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:52:04.008 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:52:04.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:03 smithi195 bash[18068]: cluster 2024-02-22T22:52:01.889630+0000 mgr.smithi049.pzczis (mgr.14180) 1470 : cluster [DBG] pgmap v972: 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-22T22:52:04.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:03 smithi195 bash[18068]: audit 2024-02-22T22:52:02.204823+0000 mgr.smithi049.pzczis (mgr.14180) 1471 : audit [DBG] from='client.15708 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:52:04.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: cephadm 2024-02-22T22:52:03.758611+0000 mgr.smithi049.pzczis (mgr.14180) 1472 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy 2024-02-22T22:52:04.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:52:04.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy 2024-02-22T22:52:04.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy 2024-02-22T22:52:04.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:52:04.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy 2024-02-22T22:52:04.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.lijmoy ... 2024-02-22T22:52:04.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:52:04.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:52:04.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:52:04.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:52:04.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:52:04.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:52:04.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:52:04.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:52:04.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:52:04.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:52:04.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy 2024-02-22T22:52:04.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:52:04.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy 2024-02-22T22:52:04.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy 2024-02-22T22:52:04.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:52:04.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy 2024-02-22T22:52:04.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.lijmoy ... 2024-02-22T22:52:04.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:52:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:52:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:52:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:52:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:52:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: cephadm 2024-02-22T22:52:03.759278+0000 mgr.smithi049.pzczis (mgr.14180) 1473 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.lijmoy 2024-02-22T22:52:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: audit 2024-02-22T22:52:03.759971+0000 mon.smithi049 (mon.0) 1043 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.lijmoy"}]: dispatch 2024-02-22T22:52:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: cephadm 2024-02-22T22:52:03.761643+0000 mgr.smithi049.pzczis (mgr.14180) 1474 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.lijmoy on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy 2024-02-22T22:52:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:52:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy 2024-02-22T22:52:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy 2024-02-22T22:52:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:52:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy 2024-02-22T22:52:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.lijmoy ... 2024-02-22T22:52:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:52:04.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:52:04.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:52:04.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:52:04.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:52:04.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:04 smithi049 bash[14150]: cephadm 2024-02-22T22:52:03.765874+0000 mgr.smithi049.pzczis (mgr.14180) 1475 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.gysmfu on smithi049 2024-02-22T22:52:05.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: cephadm 2024-02-22T22:52:03.758611+0000 mgr.smithi049.pzczis (mgr.14180) 1472 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy 2024-02-22T22:52:05.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:52:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy 2024-02-22T22:52:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy 2024-02-22T22:52:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:52:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy 2024-02-22T22:52:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.lijmoy ... 2024-02-22T22:52:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:52:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:52:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:52:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:52:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:52:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:52:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:52:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:52:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:52:05.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:52:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy 2024-02-22T22:52:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:52:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy 2024-02-22T22:52:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy 2024-02-22T22:52:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:52:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy 2024-02-22T22:52:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.lijmoy ... 2024-02-22T22:52:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:52:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:52:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:52:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:52:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:52:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: cephadm 2024-02-22T22:52:03.759278+0000 mgr.smithi049.pzczis (mgr.14180) 1473 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.lijmoy 2024-02-22T22:52:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: audit 2024-02-22T22:52:03.759971+0000 mon.smithi049 (mon.0) 1043 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.lijmoy"}]: dispatch 2024-02-22T22:52:05.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: cephadm 2024-02-22T22:52:03.761643+0000 mgr.smithi049.pzczis (mgr.14180) 1474 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.lijmoy on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy 2024-02-22T22:52:05.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:52:05.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy 2024-02-22T22:52:05.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy 2024-02-22T22:52:05.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:52:05.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy 2024-02-22T22:52:05.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.lijmoy ... 2024-02-22T22:52:05.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:52:05.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:52:05.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:52:05.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:52:05.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:52:05.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:04 smithi195 bash[18068]: cephadm 2024-02-22T22:52:03.765874+0000 mgr.smithi049.pzczis (mgr.14180) 1475 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.gysmfu on smithi049 2024-02-22T22:52:05.690 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:05 smithi049 bash[14150]: cluster 2024-02-22T22:52:03.890958+0000 mgr.smithi049.pzczis (mgr.14180) 1476 : cluster [DBG] pgmap v973: 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-22T22:52:06.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:05 smithi195 bash[18068]: cluster 2024-02-22T22:52:03.890958+0000 mgr.smithi049.pzczis (mgr.14180) 1476 : cluster [DBG] pgmap v973: 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-22T22:52:07.303 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:52:07.304 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:42:47.161693Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:50:50.194855Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mniuop on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mniuop\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mniuop\nDeploy daemon haproxy.nfs.foo.smithi195.mniuop ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.086977Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.mhajfy on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-mhajfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.mhajfy\nDeploy daemon haproxy.nfs.foo.smithi049.mhajfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:50:54.088842Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.zeqkas on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:03.761437Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lijmoy on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\nDeploy daemon haproxy.nfs.foo.smithi195.lijmoy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:42:47.161443Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:42:47.161233Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:42:47.161974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:42:47.162324Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:42:47.162981Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:52:07.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:07 smithi049 bash[14150]: cluster 2024-02-22T22:52:05.892565+0000 mgr.smithi049.pzczis (mgr.14180) 1477 : cluster [DBG] pgmap v974: 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-22T22:52:08.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:07 smithi195 bash[18068]: cluster 2024-02-22T22:52:05.892565+0000 mgr.smithi049.pzczis (mgr.14180) 1477 : cluster [DBG] pgmap v974: 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-22T22:52:08.263 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:52:08.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: audit 2024-02-22T22:52:07.298537+0000 mgr.smithi049.pzczis (mgr.14180) 1478 : audit [DBG] from='client.15712 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:52:08.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: cephadm 2024-02-22T22:52:07.614439+0000 mgr.smithi049.pzczis (mgr.14180) 1479 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu 2024-02-22T22:52:08.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:52:08.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu 2024-02-22T22:52:08.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu 2024-02-22T22:52:08.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:52:08.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu 2024-02-22T22:52:08.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.gysmfu ... 2024-02-22T22:52:08.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:52:08.941 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:52:08.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:52:08.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:52:08.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:52:08.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:52:08.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:52:08.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:52:08.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:52:08.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:52:08.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu 2024-02-22T22:52:08.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:52:08.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu 2024-02-22T22:52:08.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu 2024-02-22T22:52:08.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:52:08.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu 2024-02-22T22:52:08.942 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.gysmfu ... 2024-02-22T22:52:08.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:52:08.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:52:08.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:52:08.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:52:08.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:52:08.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: cephadm 2024-02-22T22:52:07.615939+0000 mgr.smithi049.pzczis (mgr.14180) 1480 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.gysmfu 2024-02-22T22:52:08.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: audit 2024-02-22T22:52:07.616344+0000 mon.smithi049 (mon.0) 1044 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.gysmfu"}]: dispatch 2024-02-22T22:52:08.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: cephadm 2024-02-22T22:52:07.617307+0000 mgr.smithi049.pzczis (mgr.14180) 1481 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.gysmfu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu 2024-02-22T22:52:08.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:52:08.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu 2024-02-22T22:52:08.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu 2024-02-22T22:52:08.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:52:08.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu 2024-02-22T22:52:08.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.gysmfu ... 2024-02-22T22:52:08.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:52:08.943 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:52:08.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:52:08.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:52:08.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:52:08.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: cephadm 2024-02-22T22:52:07.619272+0000 mgr.smithi049.pzczis (mgr.14180) 1482 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.llhrqf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:52:08.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: cephadm 2024-02-22T22:52:07.621601+0000 mgr.smithi049.pzczis (mgr.14180) 1483 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:52:08.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: cluster 2024-02-22T22:52:07.623089+0000 mgr.smithi049.pzczis (mgr.14180) 1484 : cluster [DBG] pgmap v975: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 89 B/s rd, 0 op/s 2024-02-22T22:52:08.944 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:08 smithi049 bash[14150]: audit 2024-02-22T22:52:07.679798+0000 mon.smithi049 (mon.0) 1045 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:52:09.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: audit 2024-02-22T22:52:07.298537+0000 mgr.smithi049.pzczis (mgr.14180) 1478 : audit [DBG] from='client.15712 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:52:09.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: cephadm 2024-02-22T22:52:07.614439+0000 mgr.smithi049.pzczis (mgr.14180) 1479 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu 2024-02-22T22:52:09.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:52:09.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu 2024-02-22T22:52:09.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu 2024-02-22T22:52:09.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:52:09.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu 2024-02-22T22:52:09.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.gysmfu ... 2024-02-22T22:52:09.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:52:09.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:52:09.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:52:09.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:52:09.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:52:09.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:52:09.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:52:09.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:52:09.054 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:52:09.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:52:09.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu 2024-02-22T22:52:09.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:52:09.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu 2024-02-22T22:52:09.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu 2024-02-22T22:52:09.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:52:09.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu 2024-02-22T22:52:09.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.gysmfu ... 2024-02-22T22:52:09.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:52:09.055 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:52:09.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:52:09.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:52:09.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:52:09.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: cephadm 2024-02-22T22:52:07.615939+0000 mgr.smithi049.pzczis (mgr.14180) 1480 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.gysmfu 2024-02-22T22:52:09.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: audit 2024-02-22T22:52:07.616344+0000 mon.smithi049 (mon.0) 1044 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.gysmfu"}]: dispatch 2024-02-22T22:52:09.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: cephadm 2024-02-22T22:52:07.617307+0000 mgr.smithi049.pzczis (mgr.14180) 1481 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.gysmfu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu 2024-02-22T22:52:09.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:52:09.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu 2024-02-22T22:52:09.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu 2024-02-22T22:52:09.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:52:09.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu 2024-02-22T22:52:09.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.gysmfu ... 2024-02-22T22:52:09.056 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:52:09.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:52:09.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:52:09.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:52:09.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:52:09.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: cephadm 2024-02-22T22:52:07.619272+0000 mgr.smithi049.pzczis (mgr.14180) 1482 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.llhrqf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:52:09.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: cephadm 2024-02-22T22:52:07.621601+0000 mgr.smithi049.pzczis (mgr.14180) 1483 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:52:09.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: cluster 2024-02-22T22:52:07.623089+0000 mgr.smithi049.pzczis (mgr.14180) 1484 : cluster [DBG] pgmap v975: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 89 B/s rd, 0 op/s 2024-02-22T22:52:09.057 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:08 smithi195 bash[18068]: audit 2024-02-22T22:52:07.679798+0000 mon.smithi049 (mon.0) 1045 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:52:09.264 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:52:09.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:09 smithi049 bash[14150]: cluster 2024-02-22T22:52:08.606733+0000 mon.smithi049 (mon.0) 1046 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:52:10.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:09 smithi195 bash[18068]: cluster 2024-02-22T22:52:08.606733+0000 mon.smithi049 (mon.0) 1046 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:52:10.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:10 smithi049 bash[14150]: cluster 2024-02-22T22:52:09.623743+0000 mgr.smithi049.pzczis (mgr.14180) 1485 : cluster [DBG] pgmap v976: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 89 B/s rd, 0 op/s 2024-02-22T22:52:11.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:10 smithi195 bash[18068]: cluster 2024-02-22T22:52:09.623743+0000 mgr.smithi049.pzczis (mgr.14180) 1485 : cluster [DBG] pgmap v976: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 89 B/s rd, 0 op/s 2024-02-22T22:52:12.603 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:52:12.603 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:42:47.161693Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:03.761437Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lijmoy on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\nDeploy daemon haproxy.nfs.foo.smithi195.lijmoy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.617174Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gysmfu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\nDeploy daemon haproxy.nfs.foo.smithi049.gysmfu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.619144Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.llhrqf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:42:47.161443Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:42:47.161233Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:42:47.161974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:42:47.162324Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:42:47.162981Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:52:12.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:12 smithi049 bash[14150]: cluster 2024-02-22T22:52:11.625644+0000 mgr.smithi049.pzczis (mgr.14180) 1486 : cluster [DBG] pgmap v977: 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-22T22:52:12.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:12 smithi049 bash[14150]: audit 2024-02-22T22:52:12.232017+0000 mon.smithi049 (mon.0) 1047 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:52:13.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:12 smithi195 bash[18068]: cluster 2024-02-22T22:52:11.625644+0000 mgr.smithi049.pzczis (mgr.14180) 1486 : cluster [DBG] pgmap v977: 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-22T22:52:13.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:12 smithi195 bash[18068]: audit 2024-02-22T22:52:12.232017+0000 mon.smithi049 (mon.0) 1047 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:52:13.310 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:52:13.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:13 smithi049 bash[14150]: audit 2024-02-22T22:52:12.595889+0000 mgr.smithi049.pzczis (mgr.14180) 1487 : audit [DBG] from='client.15716 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:52:14.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:13 smithi195 bash[18068]: audit 2024-02-22T22:52:12.595889+0000 mgr.smithi049.pzczis (mgr.14180) 1487 : audit [DBG] from='client.15716 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:52:14.311 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:52:14.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:14 smithi049 bash[14150]: cluster 2024-02-22T22:52:13.627328+0000 mgr.smithi049.pzczis (mgr.14180) 1488 : cluster [DBG] pgmap v978: 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-22T22:52:15.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:14 smithi195 bash[18068]: cluster 2024-02-22T22:52:13.627328+0000 mgr.smithi049.pzczis (mgr.14180) 1488 : cluster [DBG] pgmap v978: 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-22T22:52:16.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:16 smithi049 bash[14150]: cluster 2024-02-22T22:52:15.628868+0000 mgr.smithi049.pzczis (mgr.14180) 1489 : cluster [DBG] pgmap v979: 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-22T22:52:17.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:16 smithi195 bash[18068]: cluster 2024-02-22T22:52:15.628868+0000 mgr.smithi049.pzczis (mgr.14180) 1489 : cluster [DBG] pgmap v979: 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-22T22:52:17.687 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:52:17.687 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:42:47.161693Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:03.761437Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lijmoy on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\nDeploy daemon haproxy.nfs.foo.smithi195.lijmoy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.617174Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gysmfu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\nDeploy daemon haproxy.nfs.foo.smithi049.gysmfu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.619144Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.llhrqf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:42:47.161443Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:42:47.161233Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:42:47.161974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:42:47.162324Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:42:47.162981Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:52:18.447 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:52:18.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:18 smithi049 bash[14150]: cluster 2024-02-22T22:52:17.630909+0000 mgr.smithi049.pzczis (mgr.14180) 1490 : cluster [DBG] pgmap v980: 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-22T22:52:18.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:18 smithi049 bash[14150]: audit 2024-02-22T22:52:17.679435+0000 mgr.smithi049.pzczis (mgr.14180) 1491 : audit [DBG] from='client.15720 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:52:19.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:18 smithi195 bash[18068]: cluster 2024-02-22T22:52:17.630909+0000 mgr.smithi049.pzczis (mgr.14180) 1490 : cluster [DBG] pgmap v980: 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-22T22:52:19.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:18 smithi195 bash[18068]: audit 2024-02-22T22:52:17.679435+0000 mgr.smithi049.pzczis (mgr.14180) 1491 : audit [DBG] from='client.15720 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:52:19.448 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:52:20.832 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:20 smithi049 bash[14150]: cluster 2024-02-22T22:52:19.631991+0000 mgr.smithi049.pzczis (mgr.14180) 1492 : cluster [DBG] pgmap v981: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:52:21.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:20 smithi195 bash[18068]: cluster 2024-02-22T22:52:19.631991+0000 mgr.smithi049.pzczis (mgr.14180) 1492 : cluster [DBG] pgmap v981: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:52:22.406 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:52:22.406 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:42:47.161693Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:03.761437Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lijmoy on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\nDeploy daemon haproxy.nfs.foo.smithi195.lijmoy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.617174Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gysmfu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\nDeploy daemon haproxy.nfs.foo.smithi049.gysmfu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.619144Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.llhrqf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:42:47.161443Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:42:47.161233Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:42:47.161974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:42:47.162324Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:42:47.162981Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:52:22.954 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:22 smithi049 bash[14150]: cluster 2024-02-22T22:52:21.633915+0000 mgr.smithi049.pzczis (mgr.14180) 1493 : cluster [DBG] pgmap v982: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:52:23.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:22 smithi195 bash[18068]: cluster 2024-02-22T22:52:21.633915+0000 mgr.smithi049.pzczis (mgr.14180) 1493 : cluster [DBG] pgmap v982: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:52:23.188 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:52:23.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:23 smithi049 bash[14150]: audit 2024-02-22T22:52:22.400666+0000 mgr.smithi049.pzczis (mgr.14180) 1494 : audit [DBG] from='client.15724 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:52:23.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:23 smithi049 bash[14150]: audit 2024-02-22T22:52:22.683947+0000 mon.smithi049 (mon.0) 1048 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:52:24.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:23 smithi195 bash[18068]: audit 2024-02-22T22:52:22.400666+0000 mgr.smithi049.pzczis (mgr.14180) 1494 : audit [DBG] from='client.15724 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:52:24.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:23 smithi195 bash[18068]: audit 2024-02-22T22:52:22.683947+0000 mon.smithi049 (mon.0) 1048 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:52:24.190 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:52:25.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:24 smithi195 bash[18068]: cluster 2024-02-22T22:52:23.635651+0000 mgr.smithi049.pzczis (mgr.14180) 1495 : cluster [DBG] pgmap v983: 225 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-22T22:52:25.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:24 smithi049 bash[14150]: cluster 2024-02-22T22:52:23.635651+0000 mgr.smithi049.pzczis (mgr.14180) 1495 : cluster [DBG] pgmap v983: 225 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-22T22:52:26.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:26 smithi049 bash[14150]: cluster 2024-02-22T22:52:25.637342+0000 mgr.smithi049.pzczis (mgr.14180) 1496 : cluster [DBG] pgmap v984: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:52:27.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:26 smithi195 bash[18068]: cluster 2024-02-22T22:52:25.637342+0000 mgr.smithi049.pzczis (mgr.14180) 1496 : cluster [DBG] pgmap v984: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:52:27.392 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:52:27.392 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:42:47.161693Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:03.761437Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lijmoy on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\nDeploy daemon haproxy.nfs.foo.smithi195.lijmoy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.617174Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gysmfu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\nDeploy daemon haproxy.nfs.foo.smithi049.gysmfu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.619144Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.llhrqf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:42:47.161443Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:42:47.161233Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:42:47.161974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:42:47.162324Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:42:47.162981Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:52:28.148 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:52:29.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:28 smithi195 bash[18068]: audit 2024-02-22T22:52:27.384130+0000 mgr.smithi049.pzczis (mgr.14180) 1497 : audit [DBG] from='client.15728 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:52:29.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:28 smithi195 bash[18068]: cluster 2024-02-22T22:52:27.639317+0000 mgr.smithi049.pzczis (mgr.14180) 1498 : cluster [DBG] pgmap v985: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:52:29.149 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:52:29.162 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:28 smithi049 bash[14150]: audit 2024-02-22T22:52:27.384130+0000 mgr.smithi049.pzczis (mgr.14180) 1497 : audit [DBG] from='client.15728 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:52:29.162 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:28 smithi049 bash[14150]: cluster 2024-02-22T22:52:27.639317+0000 mgr.smithi049.pzczis (mgr.14180) 1498 : cluster [DBG] pgmap v985: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:52:30.939 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:30 smithi049 bash[14150]: cluster 2024-02-22T22:52:29.640381+0000 mgr.smithi049.pzczis (mgr.14180) 1499 : cluster [DBG] pgmap v986: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:52:31.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:30 smithi195 bash[18068]: cluster 2024-02-22T22:52:29.640381+0000 mgr.smithi049.pzczis (mgr.14180) 1499 : cluster [DBG] pgmap v986: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:52:32.368 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:52:32.368 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:42:47.161693Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:03.761437Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lijmoy on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\nDeploy daemon haproxy.nfs.foo.smithi195.lijmoy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.617174Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gysmfu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\nDeploy daemon haproxy.nfs.foo.smithi049.gysmfu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.619144Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.llhrqf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:42:47.161443Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:42:47.161233Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:42:47.161974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:42:47.162324Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:42:47.162981Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:52:32.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:32 smithi049 bash[14150]: cluster 2024-02-22T22:52:31.642394+0000 mgr.smithi049.pzczis (mgr.14180) 1500 : 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-22T22:52:33.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:32 smithi195 bash[18068]: cluster 2024-02-22T22:52:31.642394+0000 mgr.smithi049.pzczis (mgr.14180) 1500 : 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-22T22:52:33.119 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:52:34.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:33 smithi195 bash[18068]: audit 2024-02-22T22:52:32.361660+0000 mgr.smithi049.pzczis (mgr.14180) 1501 : audit [DBG] from='client.15732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:52:34.120 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:52:34.128 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:33 smithi049 bash[14150]: audit 2024-02-22T22:52:32.361660+0000 mgr.smithi049.pzczis (mgr.14180) 1501 : audit [DBG] from='client.15732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:52:35.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:34 smithi195 bash[18068]: cluster 2024-02-22T22:52:33.644265+0000 mgr.smithi049.pzczis (mgr.14180) 1502 : cluster [DBG] pgmap v988: 225 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-22T22:52:35.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:34 smithi049 bash[14150]: cluster 2024-02-22T22:52:33.644265+0000 mgr.smithi049.pzczis (mgr.14180) 1502 : cluster [DBG] pgmap v988: 225 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-22T22:52:36.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:36 smithi049 bash[14150]: cluster 2024-02-22T22:52:35.645365+0000 mgr.smithi049.pzczis (mgr.14180) 1503 : 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-22T22:52:37.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:36 smithi195 bash[18068]: cluster 2024-02-22T22:52:35.645365+0000 mgr.smithi049.pzczis (mgr.14180) 1503 : 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-22T22:52:37.416 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:52:37.417 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:42:47.161693Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:03.761437Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lijmoy on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\nDeploy daemon haproxy.nfs.foo.smithi195.lijmoy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.617174Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gysmfu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\nDeploy daemon haproxy.nfs.foo.smithi049.gysmfu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.619144Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.llhrqf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:42:47.161443Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:42:47.161233Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:42:47.161974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:42:47.162324Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:42:47.162981Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:52:38.188 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:52:39.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:38 smithi195 bash[18068]: audit 2024-02-22T22:52:37.408128+0000 mgr.smithi049.pzczis (mgr.14180) 1504 : audit [DBG] from='client.15736 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:52:39.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:38 smithi195 bash[18068]: cluster 2024-02-22T22:52:37.646463+0000 mgr.smithi049.pzczis (mgr.14180) 1505 : 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-22T22:52:39.189 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:52:39.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:38 smithi049 bash[14150]: audit 2024-02-22T22:52:37.408128+0000 mgr.smithi049.pzczis (mgr.14180) 1504 : audit [DBG] from='client.15736 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:52:39.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:38 smithi049 bash[14150]: cluster 2024-02-22T22:52:37.646463+0000 mgr.smithi049.pzczis (mgr.14180) 1505 : 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-22T22:52:40.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:40 smithi049 bash[14150]: cluster 2024-02-22T22:52:39.647144+0000 mgr.smithi049.pzczis (mgr.14180) 1506 : cluster [DBG] pgmap v991: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:52:41.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:40 smithi195 bash[18068]: cluster 2024-02-22T22:52:39.647144+0000 mgr.smithi049.pzczis (mgr.14180) 1506 : cluster [DBG] pgmap v991: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:52:42.476 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:52:42.476 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:42:47.161693Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:03.761437Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lijmoy on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\nDeploy daemon haproxy.nfs.foo.smithi195.lijmoy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.617174Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gysmfu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\nDeploy daemon haproxy.nfs.foo.smithi049.gysmfu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.619144Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.llhrqf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:42:47.161443Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:42:47.161233Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:42:47.161974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:42:47.162324Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:42:47.162981Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:52:42.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:42 smithi049 bash[14150]: cluster 2024-02-22T22:52:41.649096+0000 mgr.smithi049.pzczis (mgr.14180) 1507 : cluster [DBG] pgmap v992: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:52:43.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:42 smithi195 bash[18068]: cluster 2024-02-22T22:52:41.649096+0000 mgr.smithi049.pzczis (mgr.14180) 1507 : cluster [DBG] pgmap v992: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:52:43.216 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:52:44.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:43 smithi195 bash[18068]: audit 2024-02-22T22:52:42.469848+0000 mgr.smithi049.pzczis (mgr.14180) 1508 : audit [DBG] from='client.15740 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:52:44.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:43 smithi049 bash[14150]: audit 2024-02-22T22:52:42.469848+0000 mgr.smithi049.pzczis (mgr.14180) 1508 : audit [DBG] from='client.15740 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:52:44.216 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:52:45.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:44 smithi195 bash[18068]: cluster 2024-02-22T22:52:43.650780+0000 mgr.smithi049.pzczis (mgr.14180) 1509 : cluster [DBG] pgmap v993: 225 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-22T22:52:45.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:44 smithi049 bash[14150]: cluster 2024-02-22T22:52:43.650780+0000 mgr.smithi049.pzczis (mgr.14180) 1509 : cluster [DBG] pgmap v993: 225 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-22T22:52:46.922 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:46 smithi049 bash[14150]: cluster 2024-02-22T22:52:45.652397+0000 mgr.smithi049.pzczis (mgr.14180) 1510 : cluster [DBG] pgmap v994: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:52:47.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:46 smithi195 bash[18068]: cluster 2024-02-22T22:52:45.652397+0000 mgr.smithi049.pzczis (mgr.14180) 1510 : cluster [DBG] pgmap v994: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:52:47.340 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:52:47.341 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:42:47.161693Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:03.761437Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lijmoy on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\nDeploy daemon haproxy.nfs.foo.smithi195.lijmoy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.617174Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gysmfu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\nDeploy daemon haproxy.nfs.foo.smithi049.gysmfu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.619144Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.llhrqf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:42:47.161443Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:42:47.161233Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:42:47.161974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:42:47.162324Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:42:47.162981Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:52:48.075 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:52:49.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:48 smithi195 bash[18068]: audit 2024-02-22T22:52:47.334064+0000 mgr.smithi049.pzczis (mgr.14180) 1511 : audit [DBG] from='client.15744 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:52:49.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:48 smithi195 bash[18068]: cluster 2024-02-22T22:52:47.653627+0000 mgr.smithi049.pzczis (mgr.14180) 1512 : cluster [DBG] pgmap v995: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:52:49.075 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:52:49.088 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:48 smithi049 bash[14150]: audit 2024-02-22T22:52:47.334064+0000 mgr.smithi049.pzczis (mgr.14180) 1511 : audit [DBG] from='client.15744 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:52:49.088 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:48 smithi049 bash[14150]: cluster 2024-02-22T22:52:47.653627+0000 mgr.smithi049.pzczis (mgr.14180) 1512 : cluster [DBG] pgmap v995: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:52:51.039 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:50 smithi049 bash[14150]: cluster 2024-02-22T22:52:49.654624+0000 mgr.smithi049.pzczis (mgr.14180) 1513 : cluster [DBG] pgmap v996: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:52:51.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:50 smithi195 bash[18068]: cluster 2024-02-22T22:52:49.654624+0000 mgr.smithi049.pzczis (mgr.14180) 1513 : cluster [DBG] pgmap v996: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:52:52.381 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:52:52.382 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:42:47.161693Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:03.761437Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lijmoy on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\nDeploy daemon haproxy.nfs.foo.smithi195.lijmoy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.617174Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gysmfu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\nDeploy daemon haproxy.nfs.foo.smithi049.gysmfu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.619144Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.llhrqf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:42:47.161443Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:42:47.161233Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:42:47.161974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:42:47.162324Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:42:47.162981Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:52:52.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:52 smithi049 bash[14150]: cluster 2024-02-22T22:52:51.656517+0000 mgr.smithi049.pzczis (mgr.14180) 1514 : cluster [DBG] pgmap v997: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:52:53.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:52 smithi195 bash[18068]: cluster 2024-02-22T22:52:51.656517+0000 mgr.smithi049.pzczis (mgr.14180) 1514 : cluster [DBG] pgmap v997: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:52:53.066 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:52:54.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:53 smithi195 bash[18068]: audit 2024-02-22T22:52:52.375092+0000 mgr.smithi049.pzczis (mgr.14180) 1515 : audit [DBG] from='client.15748 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:52:54.067 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:52:54.080 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:53 smithi049 bash[14150]: audit 2024-02-22T22:52:52.375092+0000 mgr.smithi049.pzczis (mgr.14180) 1515 : audit [DBG] from='client.15748 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:52:55.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:54 smithi195 bash[18068]: cluster 2024-02-22T22:52:53.658151+0000 mgr.smithi049.pzczis (mgr.14180) 1516 : cluster [DBG] pgmap v998: 225 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-22T22:52:55.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:54 smithi049 bash[14150]: cluster 2024-02-22T22:52:53.658151+0000 mgr.smithi049.pzczis (mgr.14180) 1516 : cluster [DBG] pgmap v998: 225 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-22T22:52:56.911 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:56 smithi049 bash[14150]: cluster 2024-02-22T22:52:55.659802+0000 mgr.smithi049.pzczis (mgr.14180) 1517 : cluster [DBG] pgmap v999: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:52:57.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:56 smithi195 bash[18068]: cluster 2024-02-22T22:52:55.659802+0000 mgr.smithi049.pzczis (mgr.14180) 1517 : cluster [DBG] pgmap v999: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:52:57.330 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:52:57.330 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:42:47.161693Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:03.761437Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lijmoy on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\nDeploy daemon haproxy.nfs.foo.smithi195.lijmoy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.617174Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gysmfu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\nDeploy daemon haproxy.nfs.foo.smithi049.gysmfu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.619144Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.llhrqf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:42:47.161443Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:42:47.161233Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:42:47.161974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:42:47.162324Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:42:47.162981Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:52:58.069 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:52:59.071 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:52:59.081 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:58 smithi049 bash[14150]: audit 2024-02-22T22:52:57.324177+0000 mgr.smithi049.pzczis (mgr.14180) 1518 : audit [DBG] from='client.15752 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:52:59.082 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:52:58 smithi049 bash[14150]: cluster 2024-02-22T22:52:57.661061+0000 mgr.smithi049.pzczis (mgr.14180) 1519 : cluster [DBG] pgmap v1000: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:52:59.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:58 smithi195 bash[18068]: audit 2024-02-22T22:52:57.324177+0000 mgr.smithi049.pzczis (mgr.14180) 1518 : audit [DBG] from='client.15752 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:52:59.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:52:58 smithi195 bash[18068]: cluster 2024-02-22T22:52:57.661061+0000 mgr.smithi049.pzczis (mgr.14180) 1519 : cluster [DBG] pgmap v1000: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:01.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:00 smithi049 bash[14150]: cluster 2024-02-22T22:52:59.662200+0000 mgr.smithi049.pzczis (mgr.14180) 1520 : cluster [DBG] pgmap v1001: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:01.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:00 smithi195 bash[18068]: cluster 2024-02-22T22:52:59.662200+0000 mgr.smithi049.pzczis (mgr.14180) 1520 : cluster [DBG] pgmap v1001: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:02.277 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:53:02.277 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:42:47.161693Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:03.761437Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lijmoy on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\nDeploy daemon haproxy.nfs.foo.smithi195.lijmoy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.617174Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gysmfu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\nDeploy daemon haproxy.nfs.foo.smithi049.gysmfu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.619144Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.llhrqf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:42:47.161443Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:42:47.161233Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:42:47.161974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:42:47.162324Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:42:47.162981Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:53:03.040 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:53:03.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:02 smithi049 bash[14150]: cluster 2024-02-22T22:53:01.664225+0000 mgr.smithi049.pzczis (mgr.14180) 1521 : cluster [DBG] pgmap v1002: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:03.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:02 smithi195 bash[18068]: cluster 2024-02-22T22:53:01.664225+0000 mgr.smithi049.pzczis (mgr.14180) 1521 : cluster [DBG] pgmap v1002: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:04.041 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:53:04.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:03 smithi049 bash[14150]: audit 2024-02-22T22:53:02.271480+0000 mgr.smithi049.pzczis (mgr.14180) 1522 : audit [DBG] from='client.15756 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:53:04.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:03 smithi195 bash[18068]: audit 2024-02-22T22:53:02.271480+0000 mgr.smithi049.pzczis (mgr.14180) 1522 : audit [DBG] from='client.15756 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:53:05.100 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:04 smithi049 bash[14150]: cluster 2024-02-22T22:53:03.665878+0000 mgr.smithi049.pzczis (mgr.14180) 1523 : cluster [DBG] pgmap v1003: 225 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-22T22:53:05.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:04 smithi195 bash[18068]: cluster 2024-02-22T22:53:03.665878+0000 mgr.smithi049.pzczis (mgr.14180) 1523 : cluster [DBG] pgmap v1003: 225 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-22T22:53:07.000 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:53:07.001 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:42:47.161693Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:03.761437Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lijmoy on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\nDeploy daemon haproxy.nfs.foo.smithi195.lijmoy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.617174Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gysmfu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\nDeploy daemon haproxy.nfs.foo.smithi049.gysmfu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.619144Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.llhrqf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:42:47.161443Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:42:47.161233Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:42:47.161974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:42:47.162324Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:42:47.162981Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:53:07.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:06 smithi049 bash[14150]: cluster 2024-02-22T22:53:05.667000+0000 mgr.smithi049.pzczis (mgr.14180) 1524 : cluster [DBG] pgmap v1004: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:07.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:06 smithi195 bash[18068]: cluster 2024-02-22T22:53:05.667000+0000 mgr.smithi049.pzczis (mgr.14180) 1524 : cluster [DBG] pgmap v1004: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:07.769 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:53:08.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:07 smithi049 bash[14150]: audit 2024-02-22T22:53:07.626036+0000 mon.smithi049 (mon.0) 1049 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:53:08.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:07 smithi195 bash[18068]: audit 2024-02-22T22:53:07.626036+0000 mon.smithi049 (mon.0) 1049 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:53:08.771 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:53:09.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:08 smithi049 bash[14150]: audit 2024-02-22T22:53:06.993290+0000 mgr.smithi049.pzczis (mgr.14180) 1525 : audit [DBG] from='client.15760 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:53:09.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:08 smithi049 bash[14150]: cluster 2024-02-22T22:53:07.668650+0000 mgr.smithi049.pzczis (mgr.14180) 1526 : cluster [DBG] pgmap v1005: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:09.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:08 smithi195 bash[18068]: audit 2024-02-22T22:53:06.993290+0000 mgr.smithi049.pzczis (mgr.14180) 1525 : audit [DBG] from='client.15760 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:53:09.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:08 smithi195 bash[18068]: cluster 2024-02-22T22:53:07.668650+0000 mgr.smithi049.pzczis (mgr.14180) 1526 : cluster [DBG] pgmap v1005: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:11.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:10 smithi049 bash[14150]: cluster 2024-02-22T22:53:09.669889+0000 mgr.smithi049.pzczis (mgr.14180) 1527 : cluster [DBG] pgmap v1006: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:11.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:10 smithi195 bash[18068]: cluster 2024-02-22T22:53:09.669889+0000 mgr.smithi049.pzczis (mgr.14180) 1527 : cluster [DBG] pgmap v1006: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:12.244 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:53:12.244 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:42:47.161572Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:42:47.161693Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:42:47.161812Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:03.761437Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lijmoy on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\nDeploy daemon haproxy.nfs.foo.smithi195.lijmoy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.617174Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gysmfu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\nDeploy daemon haproxy.nfs.foo.smithi049.gysmfu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.619144Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.llhrqf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:42:47.161443Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:42:47.161233Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:42:47.163103Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:42:47.161974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:42:47.162324Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:42:47.162148Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:42:47.162981Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:53:13.004 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:53:13.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:12 smithi049 bash[14150]: cluster 2024-02-22T22:53:11.671961+0000 mgr.smithi049.pzczis (mgr.14180) 1528 : cluster [DBG] pgmap v1007: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:13.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:12 smithi195 bash[18068]: cluster 2024-02-22T22:53:11.671961+0000 mgr.smithi049.pzczis (mgr.14180) 1528 : cluster [DBG] pgmap v1007: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:14.006 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:53:14.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:13 smithi049 bash[14150]: audit 2024-02-22T22:53:12.236677+0000 mgr.smithi049.pzczis (mgr.14180) 1529 : audit [DBG] from='client.15764 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:53:14.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:13 smithi049 bash[14150]: audit 2024-02-22T22:53:13.611292+0000 mon.smithi049 (mon.0) 1050 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:53:14.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:13 smithi195 bash[18068]: audit 2024-02-22T22:53:12.236677+0000 mgr.smithi049.pzczis (mgr.14180) 1529 : audit [DBG] from='client.15764 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:53:14.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:13 smithi195 bash[18068]: audit 2024-02-22T22:53:13.611292+0000 mon.smithi049 (mon.0) 1050 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:53:15.150 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:14 smithi049 bash[14150]: cluster 2024-02-22T22:53:13.673531+0000 mgr.smithi049.pzczis (mgr.14180) 1530 : cluster [DBG] pgmap v1008: 225 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-22T22:53:15.150 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:14 smithi049 bash[14150]: audit 2024-02-22T22:53:13.896320+0000 mon.smithi049 (mon.0) 1051 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:53:15.150 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:14 smithi049 bash[14150]: audit 2024-02-22T22:53:13.897808+0000 mon.smithi049 (mon.0) 1052 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:53:15.150 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:14 smithi049 bash[14150]: audit 2024-02-22T22:53:13.906427+0000 mon.smithi049 (mon.0) 1053 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:53:15.150 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:14 smithi049 bash[14150]: cluster 2024-02-22T22:53:13.907391+0000 mgr.smithi049.pzczis (mgr.14180) 1531 : cluster [DBG] pgmap v1009: 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-22T22:53:15.151 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:14 smithi049 bash[14150]: audit 2024-02-22T22:53:13.913723+0000 mon.smithi049 (mon.0) 1054 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:53:15.151 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:14 smithi049 bash[14150]: audit 2024-02-22T22:53:13.927885+0000 mon.smithi049 (mon.0) 1055 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:53:15.151 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:14 smithi049 bash[14150]: cephadm 2024-02-22T22:53:13.931834+0000 mgr.smithi049.pzczis (mgr.14180) 1532 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.mnpnro on smithi195 2024-02-22T22:53:15.151 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:14 smithi049 bash[14150]: cluster 2024-02-22T22:53:14.607003+0000 mon.smithi049 (mon.0) 1056 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:53:15.151 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:14 smithi049 bash[14150]: cluster 2024-02-22T22:53:14.607063+0000 mon.smithi049 (mon.0) 1057 : cluster [INF] Cluster is now healthy 2024-02-22T22:53:15.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:14 smithi195 bash[18068]: cluster 2024-02-22T22:53:13.673531+0000 mgr.smithi049.pzczis (mgr.14180) 1530 : cluster [DBG] pgmap v1008: 225 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-22T22:53:15.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:14 smithi195 bash[18068]: audit 2024-02-22T22:53:13.896320+0000 mon.smithi049 (mon.0) 1051 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:53:15.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:14 smithi195 bash[18068]: audit 2024-02-22T22:53:13.897808+0000 mon.smithi049 (mon.0) 1052 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:53:15.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:14 smithi195 bash[18068]: audit 2024-02-22T22:53:13.906427+0000 mon.smithi049 (mon.0) 1053 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:53:15.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:14 smithi195 bash[18068]: cluster 2024-02-22T22:53:13.907391+0000 mgr.smithi049.pzczis (mgr.14180) 1531 : cluster [DBG] pgmap v1009: 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-22T22:53:15.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:14 smithi195 bash[18068]: audit 2024-02-22T22:53:13.913723+0000 mon.smithi049 (mon.0) 1054 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:53:15.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:14 smithi195 bash[18068]: audit 2024-02-22T22:53:13.927885+0000 mon.smithi049 (mon.0) 1055 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:53:15.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:14 smithi195 bash[18068]: cephadm 2024-02-22T22:53:13.931834+0000 mgr.smithi049.pzczis (mgr.14180) 1532 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.mnpnro on smithi195 2024-02-22T22:53:15.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:14 smithi195 bash[18068]: cluster 2024-02-22T22:53:14.607003+0000 mon.smithi049 (mon.0) 1056 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:53:15.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:14 smithi195 bash[18068]: cluster 2024-02-22T22:53:14.607063+0000 mon.smithi049 (mon.0) 1057 : cluster [INF] Cluster is now healthy 2024-02-22T22:53:17.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:16 smithi049 bash[14150]: cluster 2024-02-22T22:53:15.909036+0000 mgr.smithi049.pzczis (mgr.14180) 1533 : cluster [DBG] pgmap v1010: 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-22T22:53:17.208 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:53:17.208 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:53:13.598552Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:51:59.567761Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:53:13.598801Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:50:54.090367Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ghhuea on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:03.761437Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lijmoy on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-lijmoy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.lijmoy\nDeploy daemon haproxy.nfs.foo.smithi195.lijmoy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.617174Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.gysmfu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-gysmfu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.gysmfu\nDeploy daemon haproxy.nfs.foo.smithi049.gysmfu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:52:07.619144Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.llhrqf on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:51:59.568163Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:51:59.568440Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:53:13.599645Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:51:59.568701Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:51:59.568958Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:53:13.599014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:51:59.569970Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:53:17.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:16 smithi195 bash[18068]: cluster 2024-02-22T22:53:15.909036+0000 mgr.smithi049.pzczis (mgr.14180) 1533 : cluster [DBG] pgmap v1010: 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-22T22:53:17.959 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:53:18.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: audit 2024-02-22T22:53:17.206094+0000 mgr.smithi049.pzczis (mgr.14180) 1534 : audit [DBG] from='client.15768 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:53:18.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: cephadm 2024-02-22T22:53:17.793063+0000 mgr.smithi049.pzczis (mgr.14180) 1535 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro 2024-02-22T22:53:18.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:53:18.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro 2024-02-22T22:53:18.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro 2024-02-22T22:53:18.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:53:18.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro 2024-02-22T22:53:18.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.mnpnro ... 2024-02-22T22:53:18.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:53:18.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:53:18.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:53:18.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:53:18.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:53:18.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:53:18.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:53:18.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:53:18.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:53:18.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:53:18.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro 2024-02-22T22:53:18.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:53:18.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro 2024-02-22T22:53:18.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro 2024-02-22T22:53:18.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:53:18.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro 2024-02-22T22:53:18.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.mnpnro ... 2024-02-22T22:53:18.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:53:18.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:53:18.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:53:18.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:53:18.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:53:18.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: cephadm 2024-02-22T22:53:17.793491+0000 mgr.smithi049.pzczis (mgr.14180) 1536 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.mnpnro 2024-02-22T22:53:18.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: audit 2024-02-22T22:53:17.794055+0000 mon.smithi049 (mon.0) 1058 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.mnpnro"}]: dispatch 2024-02-22T22:53:18.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: cephadm 2024-02-22T22:53:17.795454+0000 mgr.smithi049.pzczis (mgr.14180) 1537 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.mnpnro on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro 2024-02-22T22:53:18.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:53:18.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro 2024-02-22T22:53:18.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro 2024-02-22T22:53:18.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:53:18.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro 2024-02-22T22:53:18.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.mnpnro ... 2024-02-22T22:53:18.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:53:18.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:53:18.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:53:18.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:53:18.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:53:18.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:17 smithi049 bash[14150]: cephadm 2024-02-22T22:53:17.800090+0000 mgr.smithi049.pzczis (mgr.14180) 1538 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.yqdeyu on smithi049 2024-02-22T22:53:18.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: audit 2024-02-22T22:53:17.206094+0000 mgr.smithi049.pzczis (mgr.14180) 1534 : audit [DBG] from='client.15768 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:53:18.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: cephadm 2024-02-22T22:53:17.793063+0000 mgr.smithi049.pzczis (mgr.14180) 1535 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro 2024-02-22T22:53:18.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:53:18.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro 2024-02-22T22:53:18.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro 2024-02-22T22:53:18.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:53:18.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro 2024-02-22T22:53:18.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.mnpnro ... 2024-02-22T22:53:18.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:53:18.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:53:18.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:53:18.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:53:18.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:53:18.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:53:18.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:53:18.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:53:18.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:53:18.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:53:18.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro 2024-02-22T22:53:18.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:53:18.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro 2024-02-22T22:53:18.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro 2024-02-22T22:53:18.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:53:18.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro 2024-02-22T22:53:18.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.mnpnro ... 2024-02-22T22:53:18.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:53:18.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:53:18.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:53:18.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:53:18.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:53:18.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: cephadm 2024-02-22T22:53:17.793491+0000 mgr.smithi049.pzczis (mgr.14180) 1536 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.mnpnro 2024-02-22T22:53:18.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: audit 2024-02-22T22:53:17.794055+0000 mon.smithi049 (mon.0) 1058 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.mnpnro"}]: dispatch 2024-02-22T22:53:18.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: cephadm 2024-02-22T22:53:17.795454+0000 mgr.smithi049.pzczis (mgr.14180) 1537 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.mnpnro on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro 2024-02-22T22:53:18.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:53:18.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro 2024-02-22T22:53:18.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro 2024-02-22T22:53:18.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:53:18.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro 2024-02-22T22:53:18.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.mnpnro ... 2024-02-22T22:53:18.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:53:18.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:53:18.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:53:18.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:53:18.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:53:18.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:17 smithi195 bash[18068]: cephadm 2024-02-22T22:53:17.800090+0000 mgr.smithi049.pzczis (mgr.14180) 1538 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.yqdeyu on smithi049 2024-02-22T22:53:18.960 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:53:19.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:18 smithi195 bash[18068]: cluster 2024-02-22T22:53:17.909981+0000 mgr.smithi049.pzczis (mgr.14180) 1539 : cluster [DBG] pgmap v1011: 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-22T22:53:19.439 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:18 smithi049 bash[14150]: cluster 2024-02-22T22:53:17.909981+0000 mgr.smithi049.pzczis (mgr.14180) 1539 : cluster [DBG] pgmap v1011: 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-22T22:53:21.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:20 smithi195 bash[18068]: cluster 2024-02-22T22:53:19.910822+0000 mgr.smithi049.pzczis (mgr.14180) 1540 : cluster [DBG] pgmap v1012: 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-22T22:53:21.439 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:20 smithi049 bash[14150]: cluster 2024-02-22T22:53:19.910822+0000 mgr.smithi049.pzczis (mgr.14180) 1540 : cluster [DBG] pgmap v1012: 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-22T22:53:22.587 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:53:22.587 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:53:13.598552Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:51:59.567761Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:53:13.598801Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:17.795255Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mnpnro on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\nDeploy daemon haproxy.nfs.foo.smithi195.mnpnro ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.034141Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yqdeyu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\nDeploy daemon haproxy.nfs.foo.smithi049.yqdeyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.038503Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qfuyqk on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:22.041775Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.biunml on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:51:59.568163Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:51:59.568440Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:53:13.599645Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:51:59.568701Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:51:59.568958Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:53:13.599014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:51:59.569970Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:53:23.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:22 smithi049 bash[14150]: cluster 2024-02-22T22:53:21.912483+0000 mgr.smithi049.pzczis (mgr.14180) 1541 : cluster [DBG] pgmap v1013: 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-22T22:53:23.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:22 smithi049 bash[14150]: cephadm 2024-02-22T22:53:22.031597+0000 mgr.smithi049.pzczis (mgr.14180) 1542 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu 2024-02-22T22:53:23.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:22 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:53:23.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:22 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu 2024-02-22T22:53:23.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:22 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu 2024-02-22T22:53:23.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:22 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:53:23.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:22 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu 2024-02-22T22:53:23.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:22 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.yqdeyu ... 2024-02-22T22:53:23.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:22 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:53:23.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:22 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:53:23.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:22 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:53:23.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:22 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:53:23.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:22 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:53:23.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:22 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:53:23.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:53:23.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:53:23.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:53:23.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:53:23.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu 2024-02-22T22:53:23.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:53:23.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu 2024-02-22T22:53:23.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu 2024-02-22T22:53:23.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:53:23.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu 2024-02-22T22:53:23.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.yqdeyu ... 2024-02-22T22:53:23.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:53:23.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:53:23.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:53:23.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:53:23.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:53:23.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: cephadm 2024-02-22T22:53:22.032124+0000 mgr.smithi049.pzczis (mgr.14180) 1543 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.yqdeyu 2024-02-22T22:53:23.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: audit 2024-02-22T22:53:22.032785+0000 mon.smithi049 (mon.0) 1059 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.yqdeyu"}]: dispatch 2024-02-22T22:53:23.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: cephadm 2024-02-22T22:53:22.034365+0000 mgr.smithi049.pzczis (mgr.14180) 1544 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.yqdeyu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu 2024-02-22T22:53:23.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:53:23.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu 2024-02-22T22:53:23.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu 2024-02-22T22:53:23.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:53:23.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu 2024-02-22T22:53:23.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.yqdeyu ... 2024-02-22T22:53:23.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:53:23.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:53:23.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:53:23.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:53:23.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:53:23.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: cephadm 2024-02-22T22:53:22.038763+0000 mgr.smithi049.pzczis (mgr.14180) 1545 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.qfuyqk on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:53:23.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: cephadm 2024-02-22T22:53:22.041950+0000 mgr.smithi049.pzczis (mgr.14180) 1546 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.biunml on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:53:23.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: cluster 2024-02-22T22:53:22.043238+0000 mgr.smithi049.pzczis (mgr.14180) 1547 : cluster [DBG] pgmap v1014: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:53:23.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: audit 2024-02-22T22:53:22.285116+0000 mon.smithi049 (mon.0) 1060 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:53:23.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: audit 2024-02-22T22:53:22.581777+0000 mgr.smithi049.pzczis (mgr.14180) 1548 : audit [DBG] from='client.15772 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:53:23.194 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:23 smithi049 bash[14150]: audit 2024-02-22T22:53:22.681855+0000 mon.smithi049 (mon.0) 1061 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:53:23.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: cluster 2024-02-22T22:53:21.912483+0000 mgr.smithi049.pzczis (mgr.14180) 1541 : cluster [DBG] pgmap v1013: 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-22T22:53:23.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: cephadm 2024-02-22T22:53:22.031597+0000 mgr.smithi049.pzczis (mgr.14180) 1542 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu 2024-02-22T22:53:23.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:53:23.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu 2024-02-22T22:53:23.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu 2024-02-22T22:53:23.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:53:23.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu 2024-02-22T22:53:23.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.yqdeyu ... 2024-02-22T22:53:23.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:53:23.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:53:23.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:53:23.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:53:23.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:53:23.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:53:23.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:53:23.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:53:23.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:53:23.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:53:23.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu 2024-02-22T22:53:23.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:53:23.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu 2024-02-22T22:53:23.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu 2024-02-22T22:53:23.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:53:23.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu 2024-02-22T22:53:23.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.yqdeyu ... 2024-02-22T22:53:23.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:53:23.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:53:23.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:53:23.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:53:23.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:53:23.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: cephadm 2024-02-22T22:53:22.032124+0000 mgr.smithi049.pzczis (mgr.14180) 1543 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.yqdeyu 2024-02-22T22:53:23.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: audit 2024-02-22T22:53:22.032785+0000 mon.smithi049 (mon.0) 1059 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.yqdeyu"}]: dispatch 2024-02-22T22:53:23.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: cephadm 2024-02-22T22:53:22.034365+0000 mgr.smithi049.pzczis (mgr.14180) 1544 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.yqdeyu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu 2024-02-22T22:53:23.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:53:23.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu 2024-02-22T22:53:23.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu 2024-02-22T22:53:23.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:53:23.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu 2024-02-22T22:53:23.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.yqdeyu ... 2024-02-22T22:53:23.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:53:23.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:53:23.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:53:23.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:53:23.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:53:23.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: cephadm 2024-02-22T22:53:22.038763+0000 mgr.smithi049.pzczis (mgr.14180) 1545 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.qfuyqk on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:53:23.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: cephadm 2024-02-22T22:53:22.041950+0000 mgr.smithi049.pzczis (mgr.14180) 1546 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.biunml on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:53:23.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: cluster 2024-02-22T22:53:22.043238+0000 mgr.smithi049.pzczis (mgr.14180) 1547 : cluster [DBG] pgmap v1014: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-22T22:53:23.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: audit 2024-02-22T22:53:22.285116+0000 mon.smithi049 (mon.0) 1060 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:53:23.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: audit 2024-02-22T22:53:22.581777+0000 mgr.smithi049.pzczis (mgr.14180) 1548 : audit [DBG] from='client.15772 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:53:23.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:22 smithi195 bash[18068]: audit 2024-02-22T22:53:22.681855+0000 mon.smithi049 (mon.0) 1061 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:53:23.386 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:53:24.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:23 smithi195 bash[18068]: cluster 2024-02-22T22:53:22.989215+0000 mon.smithi049 (mon.0) 1062 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:53:24.387 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:53:24.400 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:24 smithi049 bash[14150]: cluster 2024-02-22T22:53:22.989215+0000 mon.smithi049 (mon.0) 1062 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:53:25.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:25 smithi195 bash[18068]: cluster 2024-02-22T22:53:24.044874+0000 mgr.smithi049.pzczis (mgr.14180) 1549 : cluster [DBG] pgmap v1015: 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-22T22:53:25.439 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:25 smithi049 bash[14150]: cluster 2024-02-22T22:53:24.044874+0000 mgr.smithi049.pzczis (mgr.14180) 1549 : cluster [DBG] pgmap v1015: 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-22T22:53:27.439 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:27 smithi049 bash[14150]: cluster 2024-02-22T22:53:26.046996+0000 mgr.smithi049.pzczis (mgr.14180) 1550 : cluster [DBG] pgmap v1016: 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-22T22:53:27.548 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:53:27.549 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:53:13.598552Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:51:59.567761Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:53:13.598801Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:17.795255Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mnpnro on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\nDeploy daemon haproxy.nfs.foo.smithi195.mnpnro ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.034141Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yqdeyu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\nDeploy daemon haproxy.nfs.foo.smithi049.yqdeyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.038503Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qfuyqk on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:22.041775Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.biunml on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:51:59.568163Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:51:59.568440Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:53:13.599645Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:51:59.568701Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:51:59.568958Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:53:13.599014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:51:59.569970Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:53:27.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:27 smithi195 bash[18068]: cluster 2024-02-22T22:53:26.046996+0000 mgr.smithi049.pzczis (mgr.14180) 1550 : cluster [DBG] pgmap v1016: 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-22T22:53:28.331 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:53:28.439 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:28 smithi049 bash[14150]: audit 2024-02-22T22:53:27.541877+0000 mgr.smithi049.pzczis (mgr.14180) 1551 : audit [DBG] from='client.15776 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:53:28.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:28 smithi195 bash[18068]: audit 2024-02-22T22:53:27.541877+0000 mgr.smithi049.pzczis (mgr.14180) 1551 : audit [DBG] from='client.15776 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:53:29.332 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:53:29.439 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:29 smithi049 bash[14150]: cluster 2024-02-22T22:53:28.048650+0000 mgr.smithi049.pzczis (mgr.14180) 1552 : cluster [DBG] pgmap v1017: 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-22T22:53:29.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:29 smithi195 bash[18068]: cluster 2024-02-22T22:53:28.048650+0000 mgr.smithi049.pzczis (mgr.14180) 1552 : cluster [DBG] pgmap v1017: 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-22T22:53:31.414 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:31 smithi049 bash[14150]: cluster 2024-02-22T22:53:30.049687+0000 mgr.smithi049.pzczis (mgr.14180) 1553 : cluster [DBG] pgmap v1018: 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-22T22:53:31.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:31 smithi195 bash[18068]: cluster 2024-02-22T22:53:30.049687+0000 mgr.smithi049.pzczis (mgr.14180) 1553 : cluster [DBG] pgmap v1018: 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-22T22:53:32.716 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:53:32.717 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:53:13.598552Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:51:59.567761Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:53:13.598801Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:17.795255Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mnpnro on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\nDeploy daemon haproxy.nfs.foo.smithi195.mnpnro ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.034141Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yqdeyu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\nDeploy daemon haproxy.nfs.foo.smithi049.yqdeyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.038503Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qfuyqk on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:22.041775Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.biunml on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:51:59.568163Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:51:59.568440Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:53:13.599645Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:51:59.568701Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:51:59.568958Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:53:13.599014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:51:59.569970Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:53:33.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:33 smithi049 bash[14150]: cluster 2024-02-22T22:53:32.050985+0000 mgr.smithi049.pzczis (mgr.14180) 1554 : cluster [DBG] pgmap v1019: 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-22T22:53:33.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:33 smithi049 bash[14150]: audit 2024-02-22T22:53:32.707740+0000 mgr.smithi049.pzczis (mgr.14180) 1555 : audit [DBG] from='client.15780 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:53:33.434 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:53:33.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:33 smithi195 bash[18068]: cluster 2024-02-22T22:53:32.050985+0000 mgr.smithi049.pzczis (mgr.14180) 1554 : cluster [DBG] pgmap v1019: 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-22T22:53:33.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:33 smithi195 bash[18068]: audit 2024-02-22T22:53:32.707740+0000 mgr.smithi049.pzczis (mgr.14180) 1555 : audit [DBG] from='client.15780 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:53:34.435 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:53:35.439 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:35 smithi049 bash[14150]: cluster 2024-02-22T22:53:34.052714+0000 mgr.smithi049.pzczis (mgr.14180) 1556 : cluster [DBG] pgmap v1020: 225 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-22T22:53:35.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:35 smithi195 bash[18068]: cluster 2024-02-22T22:53:34.052714+0000 mgr.smithi049.pzczis (mgr.14180) 1556 : cluster [DBG] pgmap v1020: 225 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-22T22:53:37.439 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:37 smithi049 bash[14150]: cluster 2024-02-22T22:53:36.054788+0000 mgr.smithi049.pzczis (mgr.14180) 1557 : cluster [DBG] pgmap v1021: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:37.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:37 smithi195 bash[18068]: cluster 2024-02-22T22:53:36.054788+0000 mgr.smithi049.pzczis (mgr.14180) 1557 : cluster [DBG] pgmap v1021: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:37.578 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:53:37.578 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:53:13.598552Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:51:59.567761Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:53:13.598801Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:17.795255Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mnpnro on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\nDeploy daemon haproxy.nfs.foo.smithi195.mnpnro ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.034141Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yqdeyu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\nDeploy daemon haproxy.nfs.foo.smithi049.yqdeyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.038503Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qfuyqk on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:22.041775Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.biunml on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:51:59.568163Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:51:59.568440Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:53:13.599645Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:51:59.568701Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:51:59.568958Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:53:13.599014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:51:59.569970Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:53:38.327 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:53:38.939 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:38 smithi049 bash[14150]: audit 2024-02-22T22:53:37.571765+0000 mgr.smithi049.pzczis (mgr.14180) 1558 : audit [DBG] from='client.15784 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:53:38.940 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:38 smithi049 bash[14150]: audit 2024-02-22T22:53:37.683796+0000 mon.smithi049 (mon.0) 1063 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:53:39.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:38 smithi195 bash[18068]: audit 2024-02-22T22:53:37.571765+0000 mgr.smithi049.pzczis (mgr.14180) 1558 : audit [DBG] from='client.15784 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:53:39.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:38 smithi195 bash[18068]: audit 2024-02-22T22:53:37.683796+0000 mon.smithi049 (mon.0) 1063 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:53:39.327 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:53:40.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:39 smithi195 bash[18068]: cluster 2024-02-22T22:53:38.056565+0000 mgr.smithi049.pzczis (mgr.14180) 1559 : cluster [DBG] pgmap v1022: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:40.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:39 smithi049 bash[14150]: cluster 2024-02-22T22:53:38.056565+0000 mgr.smithi049.pzczis (mgr.14180) 1559 : cluster [DBG] pgmap v1022: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:42.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:41 smithi195 bash[18068]: cluster 2024-02-22T22:53:40.057751+0000 mgr.smithi049.pzczis (mgr.14180) 1560 : cluster [DBG] pgmap v1023: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:42.055 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:41 smithi049 bash[14150]: cluster 2024-02-22T22:53:40.057751+0000 mgr.smithi049.pzczis (mgr.14180) 1560 : cluster [DBG] pgmap v1023: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:42.462 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:53:42.462 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:53:13.598552Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:51:59.567761Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:53:13.598801Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:17.795255Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mnpnro on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\nDeploy daemon haproxy.nfs.foo.smithi195.mnpnro ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.034141Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yqdeyu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\nDeploy daemon haproxy.nfs.foo.smithi049.yqdeyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.038503Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qfuyqk on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:22.041775Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.biunml on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:51:59.568163Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:51:59.568440Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:53:13.599645Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:51:59.568701Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:51:59.568958Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:53:13.599014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:51:59.569970Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:53:43.198 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:53:44.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:43 smithi195 bash[18068]: cluster 2024-02-22T22:53:42.059308+0000 mgr.smithi049.pzczis (mgr.14180) 1561 : cluster [DBG] pgmap v1024: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:44.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:43 smithi195 bash[18068]: audit 2024-02-22T22:53:42.460715+0000 mgr.smithi049.pzczis (mgr.14180) 1562 : audit [DBG] from='client.15788 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:53:44.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:43 smithi049 bash[14150]: cluster 2024-02-22T22:53:42.059308+0000 mgr.smithi049.pzczis (mgr.14180) 1561 : cluster [DBG] pgmap v1024: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:44.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:43 smithi049 bash[14150]: audit 2024-02-22T22:53:42.460715+0000 mgr.smithi049.pzczis (mgr.14180) 1562 : audit [DBG] from='client.15788 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:53:44.199 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:53:45.939 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:45 smithi049 bash[14150]: cluster 2024-02-22T22:53:44.060916+0000 mgr.smithi049.pzczis (mgr.14180) 1563 : cluster [DBG] pgmap v1025: 225 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-22T22:53:46.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:45 smithi195 bash[18068]: cluster 2024-02-22T22:53:44.060916+0000 mgr.smithi049.pzczis (mgr.14180) 1563 : cluster [DBG] pgmap v1025: 225 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-22T22:53:47.323 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:53:47.323 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:53:13.598552Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:51:59.567761Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:53:13.598801Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:17.795255Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mnpnro on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\nDeploy daemon haproxy.nfs.foo.smithi195.mnpnro ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.034141Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yqdeyu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\nDeploy daemon haproxy.nfs.foo.smithi049.yqdeyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.038503Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qfuyqk on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:22.041775Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.biunml on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:51:59.568163Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:51:59.568440Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:53:13.599645Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:51:59.568701Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:51:59.568958Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:53:13.599014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:51:59.569970Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:53:47.939 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:47 smithi049 bash[14150]: cluster 2024-02-22T22:53:46.062956+0000 mgr.smithi049.pzczis (mgr.14180) 1564 : cluster [DBG] pgmap v1026: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:48.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:47 smithi195 bash[18068]: cluster 2024-02-22T22:53:46.062956+0000 mgr.smithi049.pzczis (mgr.14180) 1564 : cluster [DBG] pgmap v1026: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:48.087 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:53:49.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:48 smithi195 bash[18068]: audit 2024-02-22T22:53:47.316384+0000 mgr.smithi049.pzczis (mgr.14180) 1565 : audit [DBG] from='client.15792 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:53:49.088 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:53:49.102 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:48 smithi049 bash[14150]: audit 2024-02-22T22:53:47.316384+0000 mgr.smithi049.pzczis (mgr.14180) 1565 : audit [DBG] from='client.15792 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:53:50.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:49 smithi195 bash[18068]: cluster 2024-02-22T22:53:48.064062+0000 mgr.smithi049.pzczis (mgr.14180) 1566 : cluster [DBG] pgmap v1027: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:50.102 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:49 smithi049 bash[14150]: cluster 2024-02-22T22:53:48.064062+0000 mgr.smithi049.pzczis (mgr.14180) 1566 : cluster [DBG] pgmap v1027: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:52.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:51 smithi195 bash[18068]: cluster 2024-02-22T22:53:50.065138+0000 mgr.smithi049.pzczis (mgr.14180) 1567 : cluster [DBG] pgmap v1028: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:52.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:51 smithi049 bash[14150]: cluster 2024-02-22T22:53:50.065138+0000 mgr.smithi049.pzczis (mgr.14180) 1567 : cluster [DBG] pgmap v1028: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:52.209 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:53:52.209 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:53:13.598552Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:51:59.567761Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:53:13.598801Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:17.795255Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mnpnro on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\nDeploy daemon haproxy.nfs.foo.smithi195.mnpnro ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.034141Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yqdeyu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\nDeploy daemon haproxy.nfs.foo.smithi049.yqdeyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.038503Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qfuyqk on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:22.041775Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.biunml on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:51:59.568163Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:51:59.568440Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:53:13.599645Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:51:59.568701Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:51:59.568958Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:53:13.599014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:51:59.569970Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:53:52.960 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:53:53.962 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:53:54.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:53 smithi195 bash[18068]: cluster 2024-02-22T22:53:52.067054+0000 mgr.smithi049.pzczis (mgr.14180) 1568 : cluster [DBG] pgmap v1029: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:54.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:53 smithi195 bash[18068]: audit 2024-02-22T22:53:52.201841+0000 mgr.smithi049.pzczis (mgr.14180) 1569 : audit [DBG] from='client.15796 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:53:54.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:53 smithi049 bash[14150]: cluster 2024-02-22T22:53:52.067054+0000 mgr.smithi049.pzczis (mgr.14180) 1568 : cluster [DBG] pgmap v1029: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:54.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:53 smithi049 bash[14150]: audit 2024-02-22T22:53:52.201841+0000 mgr.smithi049.pzczis (mgr.14180) 1569 : audit [DBG] from='client.15796 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:53:56.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:55 smithi195 bash[18068]: cluster 2024-02-22T22:53:54.068618+0000 mgr.smithi049.pzczis (mgr.14180) 1570 : cluster [DBG] pgmap v1030: 225 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-22T22:53:56.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:55 smithi049 bash[14150]: cluster 2024-02-22T22:53:54.068618+0000 mgr.smithi049.pzczis (mgr.14180) 1570 : cluster [DBG] pgmap v1030: 225 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-22T22:53:57.088 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:53:57.088 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:53:13.598552Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:51:59.567761Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:53:13.598801Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:17.795255Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mnpnro on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\nDeploy daemon haproxy.nfs.foo.smithi195.mnpnro ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.034141Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yqdeyu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\nDeploy daemon haproxy.nfs.foo.smithi049.yqdeyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.038503Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qfuyqk on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:22.041775Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.biunml on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:51:59.568163Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:51:59.568440Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:53:13.599645Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:51:59.568701Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:51:59.568958Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:53:13.599014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:51:59.569970Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:53:57.857 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:53:58.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:57 smithi195 bash[18068]: cluster 2024-02-22T22:53:56.070623+0000 mgr.smithi049.pzczis (mgr.14180) 1571 : cluster [DBG] pgmap v1031: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:58.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:57 smithi049 bash[14150]: cluster 2024-02-22T22:53:56.070623+0000 mgr.smithi049.pzczis (mgr.14180) 1571 : cluster [DBG] pgmap v1031: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:53:58.858 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:53:59.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:58 smithi195 bash[18068]: audit 2024-02-22T22:53:57.081144+0000 mgr.smithi049.pzczis (mgr.14180) 1572 : audit [DBG] from='client.15800 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:53:59.063 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:58 smithi049 bash[14150]: audit 2024-02-22T22:53:57.081144+0000 mgr.smithi049.pzczis (mgr.14180) 1572 : audit [DBG] from='client.15800 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:54:00.049 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:53:59 smithi049 bash[14150]: cluster 2024-02-22T22:53:58.072338+0000 mgr.smithi049.pzczis (mgr.14180) 1573 : cluster [DBG] pgmap v1032: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:00.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:53:59 smithi195 bash[18068]: cluster 2024-02-22T22:53:58.072338+0000 mgr.smithi049.pzczis (mgr.14180) 1573 : cluster [DBG] pgmap v1032: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:01.939 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:01 smithi049 bash[14150]: cluster 2024-02-22T22:54:00.073319+0000 mgr.smithi049.pzczis (mgr.14180) 1574 : cluster [DBG] pgmap v1033: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:01.964 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:54:01.965 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:53:13.598552Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:51:59.567761Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:53:13.598801Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:17.795255Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mnpnro on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\nDeploy daemon haproxy.nfs.foo.smithi195.mnpnro ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.034141Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yqdeyu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\nDeploy daemon haproxy.nfs.foo.smithi049.yqdeyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.038503Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qfuyqk on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:22.041775Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.biunml on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:51:59.568163Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:51:59.568440Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:53:13.599645Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:51:59.568701Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:51:59.568958Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:53:13.599014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:51:59.569970Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:54:02.052 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:01 smithi195 bash[18068]: cluster 2024-02-22T22:54:00.073319+0000 mgr.smithi049.pzczis (mgr.14180) 1574 : cluster [DBG] pgmap v1033: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:02.697 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:54:03.699 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:54:04.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:03 smithi195 bash[18068]: audit 2024-02-22T22:54:01.956880+0000 mgr.smithi049.pzczis (mgr.14180) 1575 : audit [DBG] from='client.15804 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:54:04.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:03 smithi195 bash[18068]: cluster 2024-02-22T22:54:02.074576+0000 mgr.smithi049.pzczis (mgr.14180) 1576 : cluster [DBG] pgmap v1034: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:04.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:03 smithi049 bash[14150]: audit 2024-02-22T22:54:01.956880+0000 mgr.smithi049.pzczis (mgr.14180) 1575 : audit [DBG] from='client.15804 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:54:04.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:03 smithi049 bash[14150]: cluster 2024-02-22T22:54:02.074576+0000 mgr.smithi049.pzczis (mgr.14180) 1576 : cluster [DBG] pgmap v1034: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:06.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:05 smithi195 bash[18068]: cluster 2024-02-22T22:54:04.076233+0000 mgr.smithi049.pzczis (mgr.14180) 1577 : cluster [DBG] pgmap v1035: 225 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-22T22:54:06.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:05 smithi049 bash[14150]: cluster 2024-02-22T22:54:04.076233+0000 mgr.smithi049.pzczis (mgr.14180) 1577 : cluster [DBG] pgmap v1035: 225 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-22T22:54:06.645 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:54:06.645 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:53:13.598552Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:51:59.567761Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:53:13.598801Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:17.795255Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mnpnro on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\nDeploy daemon haproxy.nfs.foo.smithi195.mnpnro ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.034141Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yqdeyu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\nDeploy daemon haproxy.nfs.foo.smithi049.yqdeyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.038503Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qfuyqk on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:22.041775Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.biunml on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:51:59.568163Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:51:59.568440Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:53:13.599645Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:51:59.568701Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:51:59.568958Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:53:13.599014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:51:59.569970Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:54:07.441 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:54:08.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:07 smithi195 bash[18068]: cluster 2024-02-22T22:54:06.078233+0000 mgr.smithi049.pzczis (mgr.14180) 1578 : cluster [DBG] pgmap v1036: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:08.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:07 smithi195 bash[18068]: audit 2024-02-22T22:54:06.638168+0000 mgr.smithi049.pzczis (mgr.14180) 1579 : audit [DBG] from='client.15808 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:54:08.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:07 smithi049 bash[14150]: cluster 2024-02-22T22:54:06.078233+0000 mgr.smithi049.pzczis (mgr.14180) 1578 : cluster [DBG] pgmap v1036: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:08.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:07 smithi049 bash[14150]: audit 2024-02-22T22:54:06.638168+0000 mgr.smithi049.pzczis (mgr.14180) 1579 : audit [DBG] from='client.15808 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:54:08.442 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:54:10.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:09 smithi195 bash[18068]: cluster 2024-02-22T22:54:08.080076+0000 mgr.smithi049.pzczis (mgr.14180) 1580 : cluster [DBG] pgmap v1037: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:10.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:09 smithi049 bash[14150]: cluster 2024-02-22T22:54:08.080076+0000 mgr.smithi049.pzczis (mgr.14180) 1580 : cluster [DBG] pgmap v1037: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:11.680 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:54:11.680 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:53:13.598552Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:51:59.567761Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:53:13.598801Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:17.795255Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mnpnro on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\nDeploy daemon haproxy.nfs.foo.smithi195.mnpnro ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.034141Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yqdeyu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\nDeploy daemon haproxy.nfs.foo.smithi049.yqdeyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.038503Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qfuyqk on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:22.041775Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.biunml on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:51:59.568163Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:51:59.568440Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:53:13.599645Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:51:59.568701Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:51:59.568958Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:53:13.599014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:51:59.569970Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:54:12.053 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:11 smithi195 bash[18068]: cluster 2024-02-22T22:54:10.081153+0000 mgr.smithi049.pzczis (mgr.14180) 1581 : cluster [DBG] pgmap v1038: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:12.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:11 smithi049 bash[14150]: cluster 2024-02-22T22:54:10.081153+0000 mgr.smithi049.pzczis (mgr.14180) 1581 : cluster [DBG] pgmap v1038: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:12.484 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:54:13.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:12 smithi049 bash[14150]: audit 2024-02-22T22:54:11.678171+0000 mgr.smithi049.pzczis (mgr.14180) 1582 : audit [DBG] from='client.15812 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:54:13.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:12 smithi195 bash[18068]: audit 2024-02-22T22:54:11.678171+0000 mgr.smithi049.pzczis (mgr.14180) 1582 : audit [DBG] from='client.15812 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:54:13.485 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:54:13.939 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:13 smithi049 bash[14150]: cluster 2024-02-22T22:54:12.082149+0000 mgr.smithi049.pzczis (mgr.14180) 1583 : cluster [DBG] pgmap v1039: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:14.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:13 smithi195 bash[18068]: cluster 2024-02-22T22:54:12.082149+0000 mgr.smithi049.pzczis (mgr.14180) 1583 : cluster [DBG] pgmap v1039: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:16.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:15 smithi049 bash[14150]: cluster 2024-02-22T22:54:14.083895+0000 mgr.smithi049.pzczis (mgr.14180) 1584 : cluster [DBG] pgmap v1040: 225 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-22T22:54:16.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:15 smithi195 bash[18068]: cluster 2024-02-22T22:54:14.083895+0000 mgr.smithi049.pzczis (mgr.14180) 1584 : cluster [DBG] pgmap v1040: 225 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-22T22:54:16.829 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:54:16.829 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:53:13.598552Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:51:59.567761Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:53:13.598801Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:17.795255Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mnpnro on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\nDeploy daemon haproxy.nfs.foo.smithi195.mnpnro ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.034141Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yqdeyu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\nDeploy daemon haproxy.nfs.foo.smithi049.yqdeyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.038503Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qfuyqk on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:22.041775Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.biunml on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:51:59.568163Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:51:59.568440Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:53:13.599645Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:51:59.568701Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:51:59.568958Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:53:13.599014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:51:59.569970Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:54:17.572 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:54:18.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:17 smithi049 bash[14150]: cluster 2024-02-22T22:54:16.085948+0000 mgr.smithi049.pzczis (mgr.14180) 1585 : cluster [DBG] pgmap v1041: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:18.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:17 smithi049 bash[14150]: audit 2024-02-22T22:54:16.822056+0000 mgr.smithi049.pzczis (mgr.14180) 1586 : audit [DBG] from='client.15816 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:54:18.199 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:17 smithi195 bash[18068]: cluster 2024-02-22T22:54:16.085948+0000 mgr.smithi049.pzczis (mgr.14180) 1585 : cluster [DBG] pgmap v1041: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:18.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:17 smithi195 bash[18068]: audit 2024-02-22T22:54:16.822056+0000 mgr.smithi049.pzczis (mgr.14180) 1586 : audit [DBG] from='client.15816 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:54:18.573 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:54:19.939 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:19 smithi049 bash[14150]: cluster 2024-02-22T22:54:18.087600+0000 mgr.smithi049.pzczis (mgr.14180) 1587 : cluster [DBG] pgmap v1042: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:20.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:19 smithi195 bash[18068]: cluster 2024-02-22T22:54:18.087600+0000 mgr.smithi049.pzczis (mgr.14180) 1587 : cluster [DBG] pgmap v1042: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:21.693 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:54:21.693 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:53:13.598552Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:51:59.567761Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:53:13.598801Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:17.795255Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mnpnro on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\nDeploy daemon haproxy.nfs.foo.smithi195.mnpnro ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.034141Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yqdeyu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\nDeploy daemon haproxy.nfs.foo.smithi049.yqdeyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.038503Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qfuyqk on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:22.041775Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.biunml on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:51:59.568163Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:51:59.568440Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:53:13.599645Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:51:59.568701Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:51:59.568958Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:53:13.599014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:51:59.569970Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:54:22.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:21 smithi049 bash[14150]: cluster 2024-02-22T22:54:20.088676+0000 mgr.smithi049.pzczis (mgr.14180) 1588 : cluster [DBG] pgmap v1043: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:22.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:21 smithi195 bash[18068]: cluster 2024-02-22T22:54:20.088676+0000 mgr.smithi049.pzczis (mgr.14180) 1588 : cluster [DBG] pgmap v1043: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:22.462 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:54:23.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:22 smithi049 bash[14150]: audit 2024-02-22T22:54:21.685917+0000 mgr.smithi049.pzczis (mgr.14180) 1589 : audit [DBG] from='client.15820 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:54:23.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:22 smithi049 bash[14150]: audit 2024-02-22T22:54:22.045939+0000 mon.smithi049 (mon.0) 1064 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:54:23.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:22 smithi049 bash[14150]: audit 2024-02-22T22:54:22.315093+0000 mon.smithi049 (mon.0) 1065 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:54:23.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:22 smithi049 bash[14150]: audit 2024-02-22T22:54:22.612914+0000 mon.smithi049 (mon.0) 1066 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:54:23.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:22 smithi049 bash[14150]: audit 2024-02-22T22:54:22.614892+0000 mon.smithi049 (mon.0) 1067 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:54:23.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:22 smithi049 bash[14150]: audit 2024-02-22T22:54:22.623719+0000 mon.smithi049 (mon.0) 1068 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:54:23.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:22 smithi049 bash[14150]: audit 2024-02-22T22:54:22.630844+0000 mon.smithi049 (mon.0) 1069 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:54:23.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:22 smithi049 bash[14150]: audit 2024-02-22T22:54:22.646870+0000 mon.smithi049 (mon.0) 1070 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:54:23.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:22 smithi195 bash[18068]: audit 2024-02-22T22:54:21.685917+0000 mgr.smithi049.pzczis (mgr.14180) 1589 : audit [DBG] from='client.15820 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:54:23.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:22 smithi195 bash[18068]: audit 2024-02-22T22:54:22.045939+0000 mon.smithi049 (mon.0) 1064 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-22T22:54:23.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:22 smithi195 bash[18068]: audit 2024-02-22T22:54:22.315093+0000 mon.smithi049 (mon.0) 1065 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:54:23.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:22 smithi195 bash[18068]: audit 2024-02-22T22:54:22.612914+0000 mon.smithi049 (mon.0) 1066 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-22T22:54:23.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:22 smithi195 bash[18068]: audit 2024-02-22T22:54:22.614892+0000 mon.smithi049 (mon.0) 1067 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-22T22:54:23.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:22 smithi195 bash[18068]: audit 2024-02-22T22:54:22.623719+0000 mon.smithi049 (mon.0) 1068 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:54:23.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:22 smithi195 bash[18068]: audit 2024-02-22T22:54:22.630844+0000 mon.smithi049 (mon.0) 1069 : audit [DBG] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-22T22:54:23.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:22 smithi195 bash[18068]: audit 2024-02-22T22:54:22.646870+0000 mon.smithi049 (mon.0) 1070 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:54:23.463 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:54:23.939 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:23 smithi049 bash[14150]: cluster 2024-02-22T22:54:22.090818+0000 mgr.smithi049.pzczis (mgr.14180) 1590 : cluster [DBG] pgmap v1044: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:23.939 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:23 smithi049 bash[14150]: cluster 2024-02-22T22:54:22.625163+0000 mgr.smithi049.pzczis (mgr.14180) 1591 : cluster [DBG] pgmap v1045: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2024-02-22T22:54:23.939 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:23 smithi049 bash[14150]: cephadm 2024-02-22T22:54:22.652099+0000 mgr.smithi049.pzczis (mgr.14180) 1592 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.scwqgi on smithi195 2024-02-22T22:54:23.939 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:23 smithi049 bash[14150]: cluster 2024-02-22T22:54:22.836904+0000 mon.smithi049 (mon.0) 1071 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:54:23.939 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:23 smithi049 bash[14150]: cluster 2024-02-22T22:54:22.836995+0000 mon.smithi049 (mon.0) 1072 : cluster [INF] Cluster is now healthy 2024-02-22T22:54:24.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:23 smithi195 bash[18068]: cluster 2024-02-22T22:54:22.090818+0000 mgr.smithi049.pzczis (mgr.14180) 1590 : cluster [DBG] pgmap v1044: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:24.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:23 smithi195 bash[18068]: cluster 2024-02-22T22:54:22.625163+0000 mgr.smithi049.pzczis (mgr.14180) 1591 : cluster [DBG] pgmap v1045: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2024-02-22T22:54:24.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:23 smithi195 bash[18068]: cephadm 2024-02-22T22:54:22.652099+0000 mgr.smithi049.pzczis (mgr.14180) 1592 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.scwqgi on smithi195 2024-02-22T22:54:24.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:23 smithi195 bash[18068]: cluster 2024-02-22T22:54:22.836904+0000 mon.smithi049 (mon.0) 1071 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-22T22:54:24.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:23 smithi195 bash[18068]: cluster 2024-02-22T22:54:22.836995+0000 mon.smithi049 (mon.0) 1072 : cluster [INF] Cluster is now healthy 2024-02-22T22:54:26.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:25 smithi049 bash[14150]: cluster 2024-02-22T22:54:24.625900+0000 mgr.smithi049.pzczis (mgr.14180) 1593 : cluster [DBG] pgmap v1046: 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-22T22:54:26.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:25 smithi195 bash[18068]: cluster 2024-02-22T22:54:24.625900+0000 mgr.smithi049.pzczis (mgr.14180) 1593 : cluster [DBG] pgmap v1046: 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-22T22:54:26.684 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:54:26.685 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:53:13.598552Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:51:59.567761Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:53:13.598801Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:52:07.621475Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.zjfeec on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:17.795255Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.mnpnro on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-mnpnro\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.mnpnro\nDeploy daemon haproxy.nfs.foo.smithi195.mnpnro ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.034141Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.yqdeyu on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-yqdeyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.yqdeyu\nDeploy daemon haproxy.nfs.foo.smithi049.yqdeyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:53:22.038503Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.qfuyqk on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:53:22.041775Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.biunml on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:51:59.568163Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:51:59.568440Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:53:13.599645Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:51:59.568701Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:51:59.568958Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:53:13.599014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:51:59.569970Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:54:27.586 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:54:28.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: cluster 2024-02-22T22:54:26.627565+0000 mgr.smithi049.pzczis (mgr.14180) 1594 : cluster [DBG] pgmap v1047: 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-22T22:54:28.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: audit 2024-02-22T22:54:26.678652+0000 mgr.smithi049.pzczis (mgr.14180) 1595 : audit [DBG] from='client.15824 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:54:28.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: cephadm 2024-02-22T22:54:26.860644+0000 mgr.smithi049.pzczis (mgr.14180) 1596 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-scwqgi 2024-02-22T22:54:28.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:54:28.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-scwqgi 2024-02-22T22:54:28.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.scwqgi 2024-02-22T22:54:28.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:54:28.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.scwqgi 2024-02-22T22:54:28.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.scwqgi ... 2024-02-22T22:54:28.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:54:28.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:54:28.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:54:28.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:54:28.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:54:28.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:54:28.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:54:28.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:54:28.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:54:28.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:54:28.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-scwqgi 2024-02-22T22:54:28.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:54:28.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-scwqgi 2024-02-22T22:54:28.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.scwqgi 2024-02-22T22:54:28.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:54:28.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.scwqgi 2024-02-22T22:54:28.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.scwqgi ... 2024-02-22T22:54:28.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:54:28.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:54:28.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:54:28.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:54:28.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:54:28.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: cephadm 2024-02-22T22:54:26.861280+0000 mgr.smithi049.pzczis (mgr.14180) 1597 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.scwqgi 2024-02-22T22:54:28.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: audit 2024-02-22T22:54:26.861900+0000 mon.smithi049 (mon.0) 1073 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.scwqgi"}]: dispatch 2024-02-22T22:54:28.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: cephadm 2024-02-22T22:54:26.863378+0000 mgr.smithi049.pzczis (mgr.14180) 1598 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.scwqgi on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-scwqgi 2024-02-22T22:54:28.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:54:28.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-scwqgi 2024-02-22T22:54:28.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.scwqgi 2024-02-22T22:54:28.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:54:28.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.scwqgi 2024-02-22T22:54:28.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi195.scwqgi ... 2024-02-22T22:54:28.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:54:28.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:54:28.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:54:28.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:54:28.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:54:28.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:27 smithi049 bash[14150]: cephadm 2024-02-22T22:54:26.866600+0000 mgr.smithi049.pzczis (mgr.14180) 1599 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.wyyaju on smithi049 2024-02-22T22:54:28.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: cluster 2024-02-22T22:54:26.627565+0000 mgr.smithi049.pzczis (mgr.14180) 1594 : cluster [DBG] pgmap v1047: 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-22T22:54:28.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: audit 2024-02-22T22:54:26.678652+0000 mgr.smithi049.pzczis (mgr.14180) 1595 : audit [DBG] from='client.15824 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:54:28.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: cephadm 2024-02-22T22:54:26.860644+0000 mgr.smithi049.pzczis (mgr.14180) 1596 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-scwqgi 2024-02-22T22:54:28.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:54:28.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-scwqgi 2024-02-22T22:54:28.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.scwqgi 2024-02-22T22:54:28.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:54:28.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.scwqgi 2024-02-22T22:54:28.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.scwqgi ... 2024-02-22T22:54:28.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:54:28.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:54:28.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:54:28.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:54:28.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:54:28.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:54:28.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:54:28.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:54:28.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:54:28.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:54:28.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-scwqgi 2024-02-22T22:54:28.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:54:28.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-scwqgi 2024-02-22T22:54:28.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.scwqgi 2024-02-22T22:54:28.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:54:28.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.scwqgi 2024-02-22T22:54:28.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.scwqgi ... 2024-02-22T22:54:28.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:54:28.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:54:28.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:54:28.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:54:28.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:54:28.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: cephadm 2024-02-22T22:54:26.861280+0000 mgr.smithi049.pzczis (mgr.14180) 1597 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.scwqgi 2024-02-22T22:54:28.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: audit 2024-02-22T22:54:26.861900+0000 mon.smithi049 (mon.0) 1073 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.scwqgi"}]: dispatch 2024-02-22T22:54:28.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: cephadm 2024-02-22T22:54:26.863378+0000 mgr.smithi049.pzczis (mgr.14180) 1598 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.scwqgi on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-scwqgi 2024-02-22T22:54:28.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:54:28.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-scwqgi 2024-02-22T22:54:28.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.scwqgi 2024-02-22T22:54:28.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:54:28.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.scwqgi 2024-02-22T22:54:28.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi195.scwqgi ... 2024-02-22T22:54:28.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:54:28.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:54:28.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:54:28.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:54:28.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:54:28.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:27 smithi195 bash[18068]: cephadm 2024-02-22T22:54:26.866600+0000 mgr.smithi049.pzczis (mgr.14180) 1599 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi049.wyyaju on smithi049 2024-02-22T22:54:28.587 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:54:29.939 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:29 smithi049 bash[14150]: cluster 2024-02-22T22:54:28.628945+0000 mgr.smithi049.pzczis (mgr.14180) 1600 : cluster [DBG] pgmap v1048: 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-22T22:54:30.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:29 smithi195 bash[18068]: cluster 2024-02-22T22:54:28.628945+0000 mgr.smithi049.pzczis (mgr.14180) 1600 : cluster [DBG] pgmap v1048: 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-22T22:54:31.939 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:31 smithi049 bash[14150]: cluster 2024-02-22T22:54:30.630041+0000 mgr.smithi049.pzczis (mgr.14180) 1601 : cluster [DBG] pgmap v1049: 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-22T22:54:31.939 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:31 smithi049 bash[14150]: audit 2024-02-22T22:54:31.140202+0000 mon.smithi049 (mon.0) 1074 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.wyyaju"}]: dispatch 2024-02-22T22:54:32.100 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:54:32.101 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:53:13.598552Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:51:59.567761Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:53:13.598801Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:53:22.041775Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.biunml on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:54:26.863199Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.scwqgi on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-scwqgi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-scwqgi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.scwqgi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.scwqgi\nDeploy daemon haproxy.nfs.foo.smithi195.scwqgi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:54:31.141335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.wyyaju on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-wyyaju\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-wyyaju\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.wyyaju\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.wyyaju\nDeploy daemon haproxy.nfs.foo.smithi049.wyyaju ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:54:31.145644Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.esqazz on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:54:31.147843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.frlcby on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:51:59.568163Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:51:59.568440Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:53:13.599645Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:51:59.568701Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:51:59.568958Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:53:13.599014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:51:59.569970Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:54:32.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:31 smithi195 bash[18068]: cluster 2024-02-22T22:54:30.630041+0000 mgr.smithi049.pzczis (mgr.14180) 1601 : cluster [DBG] pgmap v1049: 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-22T22:54:32.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:31 smithi195 bash[18068]: audit 2024-02-22T22:54:31.140202+0000 mon.smithi049 (mon.0) 1074 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi049.wyyaju"}]: dispatch 2024-02-22T22:54:32.883 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:54:33.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: cephadm 2024-02-22T22:54:31.139279+0000 mgr.smithi049.pzczis (mgr.14180) 1602 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-wyyaju 2024-02-22T22:54:33.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:54:33.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-wyyaju 2024-02-22T22:54:33.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.wyyaju 2024-02-22T22:54:33.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:54:33.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.wyyaju 2024-02-22T22:54:33.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.wyyaju ... 2024-02-22T22:54:33.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:54:33.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:54:33.190 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:54:33.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:54:33.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:54:33.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: Traceback (most recent call last): 2024-02-22T22:54:33.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:54:33.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: yield (conn, connr) 2024-02-22T22:54:33.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:54:33.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: code, '\n'.join(err))) 2024-02-22T22:54:33.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-wyyaju 2024-02-22T22:54:33.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:54:33.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-wyyaju 2024-02-22T22:54:33.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.wyyaju 2024-02-22T22:54:33.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:54:33.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.wyyaju 2024-02-22T22:54:33.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.wyyaju ... 2024-02-22T22:54:33.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:54:33.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:54:33.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:54:33.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:54:33.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:54:33.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: cephadm 2024-02-22T22:54:31.139670+0000 mgr.smithi049.pzczis (mgr.14180) 1603 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.wyyaju 2024-02-22T22:54:33.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: cephadm 2024-02-22T22:54:31.141573+0000 mgr.smithi049.pzczis (mgr.14180) 1604 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.wyyaju on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-wyyaju 2024-02-22T22:54:33.192 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:54:33.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-wyyaju 2024-02-22T22:54:33.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.wyyaju 2024-02-22T22:54:33.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: /usr/bin/docker: stdout 2024-02-22T22:54:33.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.wyyaju 2024-02-22T22:54:33.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: Deploy daemon haproxy.nfs.foo.smithi049.wyyaju ... 2024-02-22T22:54:33.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:54:33.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:54:33.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:54:33.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: stat: stderr See 'docker run --help'. 2024-02-22T22:54:33.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:54:33.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: cephadm 2024-02-22T22:54:31.145773+0000 mgr.smithi049.pzczis (mgr.14180) 1605 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.esqazz on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:54:33.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: cephadm 2024-02-22T22:54:31.147982+0000 mgr.smithi049.pzczis (mgr.14180) 1606 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.frlcby on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:54:33.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: cluster 2024-02-22T22:54:31.148943+0000 mgr.smithi049.pzczis (mgr.14180) 1607 : cluster [DBG] pgmap v1050: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 113 B/s rd, 0 op/s 2024-02-22T22:54:33.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: cluster 2024-02-22T22:54:31.868475+0000 mon.smithi049 (mon.0) 1075 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:54:33.193 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:32 smithi049 bash[14150]: audit 2024-02-22T22:54:32.331401+0000 mon.smithi049 (mon.0) 1076 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:54:33.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: cephadm 2024-02-22T22:54:31.139279+0000 mgr.smithi049.pzczis (mgr.14180) 1602 : 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-wyyaju 2024-02-22T22:54:33.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:54:33.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-wyyaju 2024-02-22T22:54:33.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.wyyaju 2024-02-22T22:54:33.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:54:33.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.wyyaju 2024-02-22T22:54:33.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.wyyaju ... 2024-02-22T22:54:33.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:54:33.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:54:33.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:54:33.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:54:33.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:54:33.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: Traceback (most recent call last): 2024-02-22T22:54:33.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-22T22:54:33.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: yield (conn, connr) 2024-02-22T22:54:33.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-22T22:54:33.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: code, '\n'.join(err))) 2024-02-22T22:54:33.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: 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-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-wyyaju 2024-02-22T22:54:33.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:54:33.304 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-wyyaju 2024-02-22T22:54:33.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.wyyaju 2024-02-22T22:54:33.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:54:33.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.wyyaju 2024-02-22T22:54:33.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.wyyaju ... 2024-02-22T22:54:33.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:54:33.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:54:33.305 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:54:33.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:54:33.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:54:33.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: cephadm 2024-02-22T22:54:31.139670+0000 mgr.smithi049.pzczis (mgr.14180) 1603 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi049.wyyaju 2024-02-22T22:54:33.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: cephadm 2024-02-22T22:54:31.141573+0000 mgr.smithi049.pzczis (mgr.14180) 1604 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi049.wyyaju on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-wyyaju 2024-02-22T22:54:33.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:54:33.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-wyyaju 2024-02-22T22:54:33.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.wyyaju 2024-02-22T22:54:33.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: /usr/bin/docker: stdout 2024-02-22T22:54:33.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.wyyaju 2024-02-22T22:54:33.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: Deploy daemon haproxy.nfs.foo.smithi049.wyyaju ... 2024-02-22T22:54:33.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:54:33.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-22T22:54:33.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-22T22:54:33.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: stat: stderr See 'docker run --help'. 2024-02-22T22:54:33.306 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-22T22:54:33.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: cephadm 2024-02-22T22:54:31.145773+0000 mgr.smithi049.pzczis (mgr.14180) 1605 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi049.esqazz on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:54:33.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: cephadm 2024-02-22T22:54:31.147982+0000 mgr.smithi049.pzczis (mgr.14180) 1606 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.frlcby on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-22T22:54:33.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: cluster 2024-02-22T22:54:31.148943+0000 mgr.smithi049.pzczis (mgr.14180) 1607 : cluster [DBG] pgmap v1050: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 113 B/s rd, 0 op/s 2024-02-22T22:54:33.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: cluster 2024-02-22T22:54:31.868475+0000 mon.smithi049 (mon.0) 1075 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:54:33.307 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:32 smithi195 bash[18068]: audit 2024-02-22T22:54:32.331401+0000 mon.smithi049 (mon.0) 1076 : audit [INF] from='mgr.14180 172.21.15.49:0/4267443209' entity='mgr.smithi049.pzczis' 2024-02-22T22:54:33.884 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:54:34.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:33 smithi049 bash[14150]: audit 2024-02-22T22:54:32.094329+0000 mgr.smithi049.pzczis (mgr.14180) 1608 : audit [DBG] from='client.15828 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:54:34.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:33 smithi195 bash[18068]: audit 2024-02-22T22:54:32.094329+0000 mgr.smithi049.pzczis (mgr.14180) 1608 : audit [DBG] from='client.15828 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:54:35.189 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:34 smithi049 bash[14150]: cluster 2024-02-22T22:54:33.150541+0000 mgr.smithi049.pzczis (mgr.14180) 1609 : cluster [DBG] pgmap v1051: 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-22T22:54:35.302 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:34 smithi195 bash[18068]: cluster 2024-02-22T22:54:33.150541+0000 mgr.smithi049.pzczis (mgr.14180) 1609 : cluster [DBG] pgmap v1051: 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-22T22:54:36.191 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:35 smithi049 bash[14150]: cluster 2024-02-22T22:54:35.151804+0000 mgr.smithi049.pzczis (mgr.14180) 1610 : cluster [DBG] pgmap v1052: 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-22T22:54:36.303 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:35 smithi195 bash[18068]: cluster 2024-02-22T22:54:35.151804+0000 mgr.smithi049.pzczis (mgr.14180) 1610 : cluster [DBG] pgmap v1052: 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-22T22:54:37.266 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:54:37.266 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:53:13.598552Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:51:59.567761Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:53:13.598801Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:53:22.041775Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.biunml on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:54:26.863199Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.scwqgi on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-scwqgi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-scwqgi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.scwqgi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.scwqgi\nDeploy daemon haproxy.nfs.foo.smithi195.scwqgi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:54:31.141335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.wyyaju on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-wyyaju\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-wyyaju\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.wyyaju\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.wyyaju\nDeploy daemon haproxy.nfs.foo.smithi049.wyyaju ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:54:31.145644Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.esqazz on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:54:31.147843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.frlcby on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:51:59.568163Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:51:59.568440Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:53:13.599645Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:51:59.568701Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:51:59.568958Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:53:13.599014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:51:59.569970Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:54:38.032 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:54:38.439 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:38 smithi049 bash[14150]: cluster 2024-02-22T22:54:37.153749+0000 mgr.smithi049.pzczis (mgr.14180) 1611 : cluster [DBG] pgmap v1053: 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-22T22:54:38.439 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:38 smithi049 bash[14150]: audit 2024-02-22T22:54:37.260228+0000 mgr.smithi049.pzczis (mgr.14180) 1612 : audit [DBG] from='client.15832 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:54:38.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:38 smithi195 bash[18068]: cluster 2024-02-22T22:54:37.153749+0000 mgr.smithi049.pzczis (mgr.14180) 1611 : cluster [DBG] pgmap v1053: 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-22T22:54:38.553 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:38 smithi195 bash[18068]: audit 2024-02-22T22:54:37.260228+0000 mgr.smithi049.pzczis (mgr.14180) 1612 : audit [DBG] from='client.15832 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:54:39.033 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:54:40.439 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:40 smithi049 bash[14150]: cluster 2024-02-22T22:54:39.155215+0000 mgr.smithi049.pzczis (mgr.14180) 1613 : cluster [DBG] pgmap v1054: 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-22T22:54:40.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:40 smithi195 bash[18068]: cluster 2024-02-22T22:54:39.155215+0000 mgr.smithi049.pzczis (mgr.14180) 1613 : cluster [DBG] pgmap v1054: 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-22T22:54:42.126 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:54:42.127 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:53:13.598552Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:51:59.567761Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:53:13.598801Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:53:22.041775Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.biunml on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:54:26.863199Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.scwqgi on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-scwqgi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-scwqgi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.scwqgi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.scwqgi\nDeploy daemon haproxy.nfs.foo.smithi195.scwqgi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:54:31.141335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.wyyaju on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-wyyaju\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-wyyaju\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.wyyaju\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.wyyaju\nDeploy daemon haproxy.nfs.foo.smithi049.wyyaju ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:54:31.145644Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.esqazz on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:54:31.147843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.frlcby on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:51:59.568163Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:51:59.568440Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:53:13.599645Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:51:59.568701Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:51:59.568958Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:53:13.599014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:51:59.569970Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:54:42.439 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:42 smithi049 bash[14150]: cluster 2024-02-22T22:54:41.156578+0000 mgr.smithi049.pzczis (mgr.14180) 1614 : cluster [DBG] pgmap v1055: 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-22T22:54:42.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:42 smithi195 bash[18068]: cluster 2024-02-22T22:54:41.156578+0000 mgr.smithi049.pzczis (mgr.14180) 1614 : cluster [DBG] pgmap v1055: 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-22T22:54:42.803 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:54:43.689 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:43 smithi049 bash[14150]: audit 2024-02-22T22:54:42.122032+0000 mgr.smithi049.pzczis (mgr.14180) 1615 : audit [DBG] from='client.15836 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:54:43.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:43 smithi195 bash[18068]: audit 2024-02-22T22:54:42.122032+0000 mgr.smithi049.pzczis (mgr.14180) 1615 : audit [DBG] from='client.15836 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:54:43.805 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:54:44.689 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:44 smithi049 bash[14150]: cluster 2024-02-22T22:54:43.158180+0000 mgr.smithi049.pzczis (mgr.14180) 1616 : cluster [DBG] pgmap v1056: 225 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-22T22:54:44.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:44 smithi195 bash[18068]: cluster 2024-02-22T22:54:43.158180+0000 mgr.smithi049.pzczis (mgr.14180) 1616 : cluster [DBG] pgmap v1056: 225 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-22T22:54:46.689 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:46 smithi049 bash[14150]: cluster 2024-02-22T22:54:45.158850+0000 mgr.smithi049.pzczis (mgr.14180) 1617 : cluster [DBG] pgmap v1057: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:46.801 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:54:46.802 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:53:13.598552Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:51:59.567761Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:53:13.598801Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:53:22.041775Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.biunml on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:54:26.863199Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.scwqgi on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-scwqgi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-scwqgi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.scwqgi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.scwqgi\nDeploy daemon haproxy.nfs.foo.smithi195.scwqgi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:54:31.141335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.wyyaju on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-wyyaju\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-wyyaju\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.wyyaju\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.wyyaju\nDeploy daemon haproxy.nfs.foo.smithi049.wyyaju ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:54:31.145644Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.esqazz on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:54:31.147843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.frlcby on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:51:59.568163Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:51:59.568440Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:53:13.599645Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:51:59.568701Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:51:59.568958Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:53:13.599014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:51:59.569970Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:54:46.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:46 smithi195 bash[18068]: cluster 2024-02-22T22:54:45.158850+0000 mgr.smithi049.pzczis (mgr.14180) 1617 : cluster [DBG] pgmap v1057: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:47.584 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:54:47.689 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:47 smithi049 bash[14150]: audit 2024-02-22T22:54:46.794638+0000 mgr.smithi049.pzczis (mgr.14180) 1618 : audit [DBG] from='client.15840 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:54:47.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:47 smithi195 bash[18068]: audit 2024-02-22T22:54:46.794638+0000 mgr.smithi049.pzczis (mgr.14180) 1618 : audit [DBG] from='client.15840 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:54:48.552 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:48 smithi195 bash[18068]: cluster 2024-02-22T22:54:47.160787+0000 mgr.smithi049.pzczis (mgr.14180) 1619 : cluster [DBG] pgmap v1058: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:48.585 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:54:48.689 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:48 smithi049 bash[14150]: cluster 2024-02-22T22:54:47.160787+0000 mgr.smithi049.pzczis (mgr.14180) 1619 : cluster [DBG] pgmap v1058: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:50.689 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:50 smithi049 bash[14150]: cluster 2024-02-22T22:54:49.162006+0000 mgr.smithi049.pzczis (mgr.14180) 1620 : cluster [DBG] pgmap v1059: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:50.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:50 smithi195 bash[18068]: cluster 2024-02-22T22:54:49.162006+0000 mgr.smithi049.pzczis (mgr.14180) 1620 : cluster [DBG] pgmap v1059: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:51.897 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:54:51.897 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:53:13.598552Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:51:59.567761Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:53:13.598801Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:53:22.041775Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.biunml on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:54:26.863199Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.scwqgi on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-scwqgi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-scwqgi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.scwqgi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.scwqgi\nDeploy daemon haproxy.nfs.foo.smithi195.scwqgi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:54:31.141335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.wyyaju on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-wyyaju\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-wyyaju\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.wyyaju\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.wyyaju\nDeploy daemon haproxy.nfs.foo.smithi049.wyyaju ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:54:31.145644Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.esqazz on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:54:31.147843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.frlcby on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:51:59.568163Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:51:59.568440Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:53:13.599645Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:51:59.568701Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:51:59.568958Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:53:13.599014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:51:59.569970Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:54:52.689 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:52 smithi049 bash[14150]: cluster 2024-02-22T22:54:51.164136+0000 mgr.smithi049.pzczis (mgr.14180) 1621 : cluster [DBG] pgmap v1060: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:52.691 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:54:52.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:52 smithi195 bash[18068]: cluster 2024-02-22T22:54:51.164136+0000 mgr.smithi049.pzczis (mgr.14180) 1621 : cluster [DBG] pgmap v1060: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:53.689 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:53 smithi049 bash[14150]: audit 2024-02-22T22:54:51.890210+0000 mgr.smithi049.pzczis (mgr.14180) 1622 : audit [DBG] from='client.15844 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:54:53.692 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-22T22:54:53.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:53 smithi195 bash[18068]: audit 2024-02-22T22:54:51.890210+0000 mgr.smithi049.pzczis (mgr.14180) 1622 : audit [DBG] from='client.15844 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-22T22:54:54.689 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:54 smithi049 bash[14150]: cluster 2024-02-22T22:54:53.165893+0000 mgr.smithi049.pzczis (mgr.14180) 1623 : cluster [DBG] pgmap v1061: 225 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-22T22:54:54.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:54 smithi195 bash[18068]: cluster 2024-02-22T22:54:53.165893+0000 mgr.smithi049.pzczis (mgr.14180) 1623 : cluster [DBG] pgmap v1061: 225 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-22T22:54:56.689 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:56 smithi049 bash[14150]: cluster 2024-02-22T22:54:55.167074+0000 mgr.smithi049.pzczis (mgr.14180) 1624 : cluster [DBG] pgmap v1062: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:56.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:56 smithi195 bash[18068]: cluster 2024-02-22T22:54:55.167074+0000 mgr.smithi049.pzczis (mgr.14180) 1624 : cluster [DBG] pgmap v1062: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-22T22:54:56.917 INFO:teuthology.orchestra.run.smithi049.stdout: 2024-02-22T22:54:56.918 INFO:teuthology.orchestra.run.smithi049.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-22T22:20:51.829042Z", "last_refresh": "2024-02-22T22:53:13.598552Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-22T22:20:43.700810Z", "last_refresh": "2024-02-22T22:51:59.567761Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-22T22:20:47.779493Z", "last_refresh": "2024-02-22T22:53:13.598801Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:53:22.041775Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.biunml on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:54:26.863199Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.scwqgi on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-scwqgi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi195-scwqgi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.scwqgi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi195.scwqgi\nDeploy daemon haproxy.nfs.foo.smithi195.scwqgi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:54:31.141335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi049.wyyaju on smithi049: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-wyyaju\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi049-wyyaju\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.wyyaju\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi049.wyyaju\nDeploy daemon haproxy.nfs.foo.smithi049.wyyaju ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi049 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-22T22:54:31.145644Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi049.esqazz on smithi049: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-22T22:54:31.147843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.frlcby on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.49/16"}, "status": {"created": "2024-02-22T22:29:06.085195Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.49/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-22T22:20:41.638599Z", "last_refresh": "2024-02-22T22:51:59.568163Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:22:29.858690Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi049:172.21.15.49=smithi049", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-22T22:22:29.853124Z", "last_refresh": "2024-02-22T22:51:59.568440Z", "running": 2, "size": 2}}, {"events": ["2024-02-22T22:29:06.083344Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-22T22:29:06.079174Z", "last_refresh": "2024-02-22T22:53:13.599645Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-22T22:20:49.808748Z", "last_refresh": "2024-02-22T22:51:59.568701Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-22T22:23:08.653870Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-22T22:23:08.649351Z", "last_refresh": "2024-02-22T22:51:59.568958Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-22T22:20:45.675079Z", "last_refresh": "2024-02-22T22:53:13.599014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-22T22:29:00.740259Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-22T22:29:13.050024Z", "last_refresh": "2024-02-22T22:51:59.569970Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-22T22:54:57.639 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-22T22:54:57.639 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-22T22:54:57.882 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=8379b5e3cbe74e62b1b8605efd3001cd 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-22T22:54:57.884 DEBUG:teuthology.run_tasks:Unwinding manager vip 2024-02-22T22:54:57.893 INFO:tasks.vip:Removing 10.0.15.49 (and any VIPs) on smithi049.front.sepia.ceph.com iface ens1f0... 2024-02-22T22:54:57.894 DEBUG:teuthology.orchestra.run.smithi049:> sudo ip addr del 10.0.15.49/16 dev ens1f0 2024-02-22T22:54:57.915 DEBUG:teuthology.orchestra.run.smithi049:> sudo ip addr del 10.0.31.49/16 dev ens1f0 2024-02-22T22:54:57.969 INFO:teuthology.orchestra.run.smithi049.stderr:RTNETLINK answers: Cannot assign requested address 2024-02-22T22:54:57.970 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-02-22T22:54:57.971 INFO:tasks.vip:Removing 10.0.15.195 (and any VIPs) on smithi195.front.sepia.ceph.com iface enp3s0f1... 2024-02-22T22:54:57.971 DEBUG:teuthology.orchestra.run.smithi195:> sudo ip addr del 10.0.15.195/16 dev enp3s0f1 2024-02-22T22:54:57.986 DEBUG:teuthology.orchestra.run.smithi195:> sudo ip addr del 10.0.31.49/16 dev enp3s0f1 2024-02-22T22:54:58.040 INFO:teuthology.orchestra.run.smithi195.stderr:RTNETLINK answers: Cannot assign requested address 2024-02-22T22:54:58.040 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-02-22T22:54:58.041 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-02-22T22:54:58.053 INFO:tasks.cephadm:Teardown begin 2024-02-22T22:54:58.054 DEBUG:teuthology.orchestra.run.smithi049:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-02-22T22:54:58.069 DEBUG:teuthology.orchestra.run.smithi195:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-02-22T22:54:58.098 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-02-22T22:54:58.098 DEBUG:teuthology.orchestra.run.smithi049:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-02-22T22:54:58.121 DEBUG:teuthology.orchestra.run.smithi195:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-02-22T22:54:58.144 INFO:tasks.cephadm:Stopping all daemons... 2024-02-22T22:54:58.144 INFO:tasks.cephadm.mon.smithi049:Stopping mon.smithi049... 2024-02-22T22:54:58.144 DEBUG:teuthology.orchestra.run.smithi049:> sudo systemctl stop ceph-605df99c-d1d0-11ee-95c0-87774f69a715@mon.smithi049 2024-02-22T22:54:58.439 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:58 smithi049 systemd[1]: Stopping Ceph mon.smithi049 for 605df99c-d1d0-11ee-95c0-87774f69a715... 2024-02-22T22:54:58.439 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:58 smithi049 bash[120887]: Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-mon.smithi049 2024-02-22T22:54:58.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:58 smithi049 bash[14150]: debug 2024-02-22T22:54:58.362+0000 7f072920a700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi049 -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-22T22:54:58.440 INFO:journalctl@ceph.mon.smithi049.smithi049.stdout:Feb 22 22:54:58 smithi049 bash[14150]: debug 2024-02-22T22:54:58.362+0000 7f072920a700 -1 mon.smithi049@0(leader) e2 *** Got Signal Terminated *** 2024-02-22T22:54:59.262 DEBUG:teuthology.orchestra.run.smithi049:> sudo pkill -f 'journalctl -f -n 0 -u ceph-605df99c-d1d0-11ee-95c0-87774f69a715@mon.smithi049.service' 2024-02-22T22:54:59.320 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-02-22T22:54:59.320 INFO:tasks.cephadm.mon.smithi049:Stopped mon.smithi049 2024-02-22T22:54:59.320 INFO:tasks.cephadm.mon.smithi195:Stopping mon.smithi195... 2024-02-22T22:54:59.320 DEBUG:teuthology.orchestra.run.smithi195:> sudo systemctl stop ceph-605df99c-d1d0-11ee-95c0-87774f69a715@mon.smithi195 2024-02-22T22:54:59.630 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:59 smithi195 systemd[1]: Stopping Ceph mon.smithi195 for 605df99c-d1d0-11ee-95c0-87774f69a715... 2024-02-22T22:54:59.631 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:59 smithi195 bash[40782]: Error response from daemon: No such container: ceph-605df99c-d1d0-11ee-95c0-87774f69a715-mon.smithi195 2024-02-22T22:54:59.631 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:59 smithi195 bash[18068]: debug 2024-02-22T22:54:59.516+0000 7fc8675f6700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi195 -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-22T22:54:59.631 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Feb 22 22:54:59 smithi195 bash[18068]: debug 2024-02-22T22:54:59.516+0000 7fc8675f6700 -1 mon.smithi195@1(peon) e2 *** Got Signal Terminated *** 2024-02-22T22:55:00.468 DEBUG:teuthology.orchestra.run.smithi195:> sudo pkill -f 'journalctl -f -n 0 -u ceph-605df99c-d1d0-11ee-95c0-87774f69a715@mon.smithi195.service' 2024-02-22T22:55:00.532 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-02-22T22:55:00.532 INFO:tasks.cephadm.mon.smithi195:Stopped mon.smithi195 2024-02-22T22:55:00.533 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 --force --keep-logs 2024-02-22T22:56:08.735 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 --force --keep-logs 2024-02-22T22:57:01.762 DEBUG:teuthology.orchestra.run.smithi049:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-02-22T22:57:01.780 DEBUG:teuthology.orchestra.run.smithi195:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-02-22T22:57:01.794 INFO:tasks.cephadm:Archiving crash dumps... 2024-02-22T22:57:01.796 DEBUG:teuthology.misc:Transferring archived files from smithi049:/var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/crash to /home/teuthworker/archive/yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi/7571373/remote/ubuntu@smithi049.front.sepia.ceph.com/crash 2024-02-22T22:57:01.797 DEBUG:teuthology.orchestra.run.smithi049:> sudo tar c -f - -C /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/crash -- . 2024-02-22T22:57:01.837 INFO:teuthology.orchestra.run.smithi049.stderr:tar: /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/crash: Cannot open: No such file or directory 2024-02-22T22:57:01.837 INFO:teuthology.orchestra.run.smithi049.stderr:tar: Error is not recoverable: exiting now 2024-02-22T22:57:01.839 DEBUG:teuthology.misc:Transferring archived files from smithi195:/var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/crash to /home/teuthworker/archive/yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi/7571373/remote/ubuntu@smithi195.front.sepia.ceph.com/crash 2024-02-22T22:57:01.840 DEBUG:teuthology.orchestra.run.smithi195:> sudo tar c -f - -C /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/crash -- . 2024-02-22T22:57:01.854 INFO:teuthology.orchestra.run.smithi195.stderr:tar: /var/lib/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/crash: Cannot open: No such file or directory 2024-02-22T22:57:01.854 INFO:teuthology.orchestra.run.smithi195.stderr:tar: Error is not recoverable: exiting now 2024-02-22T22:57:01.855 INFO:tasks.cephadm:Checking cluster log for badness... 2024-02-22T22:57:01.855 DEBUG:teuthology.orchestra.run.smithi049:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-02-22T22:57:01.897 INFO:teuthology.orchestra.run.smithi049.stdout:2024-02-22T22:29:31.699760+0000 mon.smithi049 (mon.0) 696 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-22T22:57:01.899 WARNING:tasks.cephadm:Found errors (ERR|WRN|SEC) in cluster log 2024-02-22T22:57:01.899 INFO:tasks.cephadm:Compressing logs... 2024-02-22T22:57:01.900 DEBUG:teuthology.orchestra.run.smithi049:> 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-22T22:57:01.943 DEBUG:teuthology.orchestra.run.smithi195:> 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-22T22:57:01.956 INFO:teuthology.orchestra.run.smithi049.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-02-22T22:57:01.959 INFO:teuthology.orchestra.run.smithi195.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-02-22T22:57:01.963 INFO:teuthology.orchestra.run.smithi195.stderr:gzip -5 --verbose -- /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-mgr.smithi195.prtvdp.log 2024-02-22T22:57:01.963 INFO:teuthology.orchestra.run.smithi195.stderr:gzip -5 --verbose -- /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph.audit.log 2024-02-22T22:57:01.964 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-mgr.smithi195.prtvdp.log: gzip -5 --verbose -- /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-osd.6.log 2024-02-22T22:57:01.965 INFO:teuthology.orchestra.run.smithi195.stderr:gzip -5 --verbose -- /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph.log 2024-02-22T22:57:01.965 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph.cephadm.log 2024-02-22T22:57:01.965 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-osd.6.log: /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph.log: gzip -5 --verbose -- /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-osd.0.log 2024-02-22T22:57:01.966 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-client.rgw.foorgw.smithi195.guejzt.log 2024-02-22T22:57:01.967 INFO:teuthology.orchestra.run.smithi195.stderr:gzip -5 --verbose -- /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-mon.smithi195.log 2024-02-22T22:57:01.967 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-osd.0.log: /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-client.rgw.foorgw.smithi195.guejzt.log: gzip -5 --verbose -- /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-osd.4.log 2024-02-22T22:57:01.968 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-mon.smithi195.log: 73.8% -- replaced with /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-client.rgw.foorgw.smithi195.guejzt.log.gz 2024-02-22T22:57:01.968 INFO:teuthology.orchestra.run.smithi195.stderr: 90.6% -- replaced with /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph.log.gz 2024-02-22T22:57:01.969 INFO:teuthology.orchestra.run.smithi195.stderr:gzip -5 --verbose -- /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-volume.log 2024-02-22T22:57:01.969 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-osd.4.log: 96.6% -- replaced with /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph.cephadm.log.gz 2024-02-22T22:57:01.969 INFO:teuthology.orchestra.run.smithi195.stderr:gzip -5 --verbose -- /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-osd.2.log 2024-02-22T22:57:01.971 INFO:teuthology.orchestra.run.smithi195.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-02-22T22:57:01.971 INFO:teuthology.orchestra.run.smithi049.stderr:gzip -5 --verbose -- /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-client.rgw.foorgw.smithi049.rkfzgw.log 2024-02-22T22:57:01.971 INFO:teuthology.orchestra.run.smithi049.stderr:gzip -5 --verbose -- /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-osd.5.log 2024-02-22T22:57:01.972 INFO:teuthology.orchestra.run.smithi049.stderr:/var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-client.rgw.foorgw.smithi049.rkfzgw.log: gzip -5 --verbose -- /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph.audit.log 2024-02-22T22:57:01.972 INFO:teuthology.orchestra.run.smithi049.stderr:gzip -5 --verbose -- /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-osd.1.log 2024-02-22T22:57:01.972 INFO:teuthology.orchestra.run.smithi049.stderr: 74.3% -- replaced with /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-client.rgw.foorgw.smithi049.rkfzgw.log.gz 2024-02-22T22:57:01.972 INFO:teuthology.orchestra.run.smithi049.stderr:/var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-osd.5.log: /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-mgr.smithi049.pzczis.log 2024-02-22T22:57:01.973 INFO:teuthology.orchestra.run.smithi049.stderr:/var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-mon.smithi049.log 2024-02-22T22:57:01.973 INFO:teuthology.orchestra.run.smithi049.stderr:gzip -5 --verbose -- /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph.log 2024-02-22T22:57:01.973 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-osd.2.log: /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-volume.log: 91.8% -- replaced with /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph.audit.log.gz 2024-02-22T22:57:01.975 INFO:teuthology.orchestra.run.smithi049.stderr:/var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-mgr.smithi049.pzczis.log: gzip -5 --verbose -- /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph.cephadm.log 2024-02-22T22:57:01.975 INFO:teuthology.orchestra.run.smithi049.stderr:/var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-mon.smithi049.log: 91.5% -- replaced with /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph.audit.log.gz 2024-02-22T22:57:01.976 INFO:teuthology.orchestra.run.smithi049.stderr:gzip -5 --verbose -- /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-osd.3.log 2024-02-22T22:57:01.976 INFO:teuthology.orchestra.run.smithi049.stderr:/var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph.log: gzip -5 --verbose -- /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-volume.log 2024-02-22T22:57:01.976 INFO:teuthology.orchestra.run.smithi049.stderr:/var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph.cephadm.log: /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-osd.3.log: gzip -5 --verbose -- /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-osd.7.log 2024-02-22T22:57:01.978 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/cephadm.log: 93.5% -- replaced with /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-mgr.smithi195.prtvdp.log.gz 2024-02-22T22:57:01.979 INFO:teuthology.orchestra.run.smithi195.stderr: 92.6% -- replaced with /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-volume.log.gz 2024-02-22T22:57:01.979 INFO:teuthology.orchestra.run.smithi195.stderr: 90.4% -- replaced with /var/log/ceph/cephadm.log.gz 2024-02-22T22:57:01.981 INFO:teuthology.orchestra.run.smithi049.stderr:/var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-volume.log: 90.5% -- replaced with /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph.log.gz 2024-02-22T22:57:01.981 INFO:teuthology.orchestra.run.smithi049.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-02-22T22:57:01.981 INFO:teuthology.orchestra.run.smithi049.stderr: 96.4% -- replaced with /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph.cephadm.log.gz 2024-02-22T22:57:01.987 INFO:teuthology.orchestra.run.smithi049.stderr:/var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-osd.7.log: /var/log/ceph/cephadm.log: 92.6% -- replaced with /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-volume.log.gz 2024-02-22T22:57:02.003 INFO:teuthology.orchestra.run.smithi049.stderr: 92.8% -- replaced with /var/log/ceph/cephadm.log.gz 2024-02-22T22:57:02.391 INFO:teuthology.orchestra.run.smithi195.stderr: 92.8% -- replaced with /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-mon.smithi195.log.gz 2024-02-22T22:57:02.419 INFO:teuthology.orchestra.run.smithi049.stderr: 89.3% -- replaced with /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-mgr.smithi049.pzczis.log.gz 2024-02-22T22:57:03.057 INFO:teuthology.orchestra.run.smithi049.stderr: 90.3% -- replaced with /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-mon.smithi049.log.gz 2024-02-22T22:57:03.125 INFO:teuthology.orchestra.run.smithi195.stderr: 93.4% -- replaced with /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-osd.2.log.gz 2024-02-22T22:57:03.128 INFO:teuthology.orchestra.run.smithi049.stderr: 93.4% -- replaced with /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-osd.1.log.gz 2024-02-22T22:57:03.177 INFO:teuthology.orchestra.run.smithi195.stderr: 93.4% -- replaced with /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-osd.6.log.gz 2024-02-22T22:57:03.213 INFO:teuthology.orchestra.run.smithi195.stderr: 93.7% -- replaced with /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-osd.4.log.gz 2024-02-22T22:57:03.297 INFO:teuthology.orchestra.run.smithi195.stderr: 93.6% -- replaced with /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-osd.0.log.gz 2024-02-22T22:57:03.298 INFO:teuthology.orchestra.run.smithi195.stderr: 2024-02-22T22:57:03.298 INFO:teuthology.orchestra.run.smithi195.stderr:real 0m1.350s 2024-02-22T22:57:03.298 INFO:teuthology.orchestra.run.smithi195.stderr:user 0m5.221s 2024-02-22T22:57:03.299 INFO:teuthology.orchestra.run.smithi195.stderr:sys 0m0.222s 2024-02-22T22:57:03.438 INFO:teuthology.orchestra.run.smithi049.stderr: 93.6% -- replaced with /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-osd.3.log.gz 2024-02-22T22:57:03.448 INFO:teuthology.orchestra.run.smithi049.stderr: 93.6% -- replaced with /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-osd.7.log.gz 2024-02-22T22:57:03.584 INFO:teuthology.orchestra.run.smithi049.stderr: 93.5% -- replaced with /var/log/ceph/605df99c-d1d0-11ee-95c0-87774f69a715/ceph-osd.5.log.gz 2024-02-22T22:57:03.585 INFO:teuthology.orchestra.run.smithi049.stderr: 2024-02-22T22:57:03.585 INFO:teuthology.orchestra.run.smithi049.stderr:real 0m1.639s 2024-02-22T22:57:03.586 INFO:teuthology.orchestra.run.smithi049.stderr:user 0m7.023s 2024-02-22T22:57:03.586 INFO:teuthology.orchestra.run.smithi049.stderr:sys 0m0.286s 2024-02-22T22:57:03.587 INFO:tasks.cephadm:Archiving logs... 2024-02-22T22:57:03.587 DEBUG:teuthology.misc:Transferring archived files from smithi049:/var/log/ceph to /home/teuthworker/archive/yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi/7571373/remote/ubuntu@smithi049.front.sepia.ceph.com/log 2024-02-22T22:57:03.588 DEBUG:teuthology.orchestra.run.smithi049:> sudo tar c -f - -C /var/log/ceph -- . 2024-02-22T22:57:04.545 DEBUG:teuthology.misc:Transferring archived files from smithi195:/var/log/ceph to /home/teuthworker/archive/yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi/7571373/remote/ubuntu@smithi195.front.sepia.ceph.com/log 2024-02-22T22:57:04.546 DEBUG:teuthology.orchestra.run.smithi195:> sudo tar c -f - -C /var/log/ceph -- . 2024-02-22T22:57:05.311 INFO:tasks.cephadm:Removing cluster... 2024-02-22T22:57:05.311 DEBUG:teuthology.orchestra.run.smithi049:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 --force 2024-02-22T22:57:06.694 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 605df99c-d1d0-11ee-95c0-87774f69a715 --force 2024-02-22T22:57:08.078 INFO:tasks.cephadm:Removing cephadm ... 2024-02-22T22:57:08.078 DEBUG:teuthology.orchestra.run.smithi049:> rm -rf /home/ubuntu/cephtest/cephadm 2024-02-22T22:57:08.086 DEBUG:teuthology.orchestra.run.smithi195:> rm -rf /home/ubuntu/cephtest/cephadm 2024-02-22T22:57:08.092 INFO:tasks.cephadm:Teardown complete 2024-02-22T22:57:08.093 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-02-22T22:57:08.103 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi049:/dev/vg_nvme/lv_1... 2024-02-22T22:57:08.103 DEBUG:teuthology.orchestra.run.smithi049:> sudo nvme disconnect -n lv_1 2024-02-22T22:57:08.411 INFO:teuthology.orchestra.run.smithi049.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-02-22T22:57:08.412 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-22T22:57:08.413 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi049:/dev/vg_nvme/lv_2... 2024-02-22T22:57:08.413 DEBUG:teuthology.orchestra.run.smithi049:> sudo nvme disconnect -n lv_2 2024-02-22T22:57:08.731 INFO:teuthology.orchestra.run.smithi049.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-02-22T22:57:08.732 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-22T22:57:08.733 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi049:/dev/vg_nvme/lv_3... 2024-02-22T22:57:08.733 DEBUG:teuthology.orchestra.run.smithi049:> sudo nvme disconnect -n lv_3 2024-02-22T22:57:09.035 INFO:teuthology.orchestra.run.smithi049.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-02-22T22:57:09.036 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-22T22:57:09.037 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi049:/dev/vg_nvme/lv_4... 2024-02-22T22:57:09.037 DEBUG:teuthology.orchestra.run.smithi049:> sudo nvme disconnect -n lv_4 2024-02-22T22:57:09.338 INFO:teuthology.orchestra.run.smithi049.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-02-22T22:57:09.340 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-22T22:57:09.341 DEBUG:teuthology.orchestra.run.smithi049:> set -ex 2024-02-22T22:57:09.341 DEBUG:teuthology.orchestra.run.smithi049:> sudo dd of=/scratch_devs 2024-02-22T22:57:09.356 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi195:/dev/vg_nvme/lv_1... 2024-02-22T22:57:09.356 DEBUG:teuthology.orchestra.run.smithi195:> sudo nvme disconnect -n lv_1 2024-02-22T22:57:09.659 INFO:teuthology.orchestra.run.smithi195.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-02-22T22:57:09.660 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-22T22:57:09.661 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi195:/dev/vg_nvme/lv_2... 2024-02-22T22:57:09.662 DEBUG:teuthology.orchestra.run.smithi195:> sudo nvme disconnect -n lv_2 2024-02-22T22:57:09.939 INFO:teuthology.orchestra.run.smithi195.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-02-22T22:57:09.941 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-22T22:57:09.941 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi195:/dev/vg_nvme/lv_3... 2024-02-22T22:57:09.942 DEBUG:teuthology.orchestra.run.smithi195:> sudo nvme disconnect -n lv_3 2024-02-22T22:57:10.199 INFO:teuthology.orchestra.run.smithi195.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-02-22T22:57:10.200 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-22T22:57:10.201 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi195:/dev/vg_nvme/lv_4... 2024-02-22T22:57:10.201 DEBUG:teuthology.orchestra.run.smithi195:> sudo nvme disconnect -n lv_4 2024-02-22T22:57:10.487 INFO:teuthology.orchestra.run.smithi195.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-02-22T22:57:10.488 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-22T22:57:10.489 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-02-22T22:57:10.489 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd of=/scratch_devs 2024-02-22T22:57:10.504 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-02-22T22:57:10.519 INFO:teuthology.task.clock:Checking final clock skew... 2024-02-22T22:57:10.519 DEBUG:teuthology.orchestra.run.smithi049:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-02-22T22:57:10.522 DEBUG:teuthology.orchestra.run.smithi195:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-02-22T22:57:10.538 INFO:teuthology.orchestra.run.smithi049.stdout: remote refid st t when poll reach delay offset jitter 2024-02-22T22:57:10.538 INFO:teuthology.orchestra.run.smithi049.stdout:============================================================================== 2024-02-22T22:57:10.539 INFO:teuthology.orchestra.run.smithi049.stdout:*hv01.front.sepi 44.4.53.2 2 u 57 128 377 0.129 -7.735 1.031 2024-02-22T22:57:10.539 INFO:teuthology.orchestra.run.smithi049.stdout:+hv02.front.sepi 63.231.80.2 3 u 61 128 377 0.168 -1.305 1.207 2024-02-22T22:57:10.539 INFO:teuthology.orchestra.run.smithi049.stdout:+hv03.front.sepi 74.6.168.72 3 u 10 128 377 0.151 -3.449 1.138 2024-02-22T22:57:10.539 INFO:teuthology.orchestra.run.smithi049.stdout: hv04.front.sepi .INIT. 16 u - 1024 0 0.000 0.000 0.000 2024-02-22T22:57:10.566 INFO:teuthology.orchestra.run.smithi195.stdout: remote refid st t when poll reach delay offset jitter 2024-02-22T22:57:10.566 INFO:teuthology.orchestra.run.smithi195.stdout:============================================================================== 2024-02-22T22:57:10.566 INFO:teuthology.orchestra.run.smithi195.stdout:*hv01.front.sepi 44.4.53.2 2 u 122 128 377 0.102 -2.632 0.334 2024-02-22T22:57:10.566 INFO:teuthology.orchestra.run.smithi195.stdout:+hv02.front.sepi 63.231.80.2 3 u 125 128 377 0.111 2.159 0.316 2024-02-22T22:57:10.566 INFO:teuthology.orchestra.run.smithi195.stdout:+hv03.front.sepi 74.6.168.72 3 u 125 128 377 0.127 1.652 0.218 2024-02-22T22:57:10.567 INFO:teuthology.orchestra.run.smithi195.stdout: hv04.front.sepi .INIT. 16 u - 1024 0 0.000 0.000 0.000 2024-02-22T22:57:10.568 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-02-22T22:57:10.580 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-02-22T22:57:10.581 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-02-22T22:57:10.596 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-02-22T22:57:10.613 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-02-22T22:57:10.652 INFO:teuthology.task.internal:Duration was 2628.968151 seconds 2024-02-22T22:57:10.653 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-02-22T22:57:10.668 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-02-22T22:57:10.669 DEBUG:teuthology.orchestra.run.smithi049:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-02-22T22:57:10.671 DEBUG:teuthology.orchestra.run.smithi195:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-02-22T22:57:10.721 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-02-22T22:57:10.721 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi049.front.sepia.ceph.com 2024-02-22T22:57:10.721 DEBUG:teuthology.orchestra.run.smithi049:> 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-22T22:57:10.736 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi195.front.sepia.ceph.com 2024-02-22T22:57:10.736 DEBUG:teuthology.orchestra.run.smithi195:> 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-22T22:57:10.772 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-02-22T22:57:10.773 DEBUG:teuthology.orchestra.run.smithi049:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-02-22T22:57:10.780 DEBUG:teuthology.orchestra.run.smithi195:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-02-22T22:57:10.868 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-02-22T22:57:10.869 DEBUG:teuthology.orchestra.run.smithi049:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-02-22T22:57:10.871 DEBUG:teuthology.orchestra.run.smithi195:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-02-22T22:57:11.076 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-02-22T22:57:11.087 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-02-22T22:57:11.087 DEBUG:teuthology.orchestra.run.smithi049:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-02-22T22:57:11.101 DEBUG:teuthology.orchestra.run.smithi195:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-02-22T22:57:11.118 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-02-22T22:57:11.129 DEBUG:teuthology.orchestra.run.smithi049:> 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-22T22:57:11.143 DEBUG:teuthology.orchestra.run.smithi195:> 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-22T22:57:11.155 INFO:teuthology.orchestra.run.smithi049.stdout:kernel.core_pattern = core 2024-02-22T22:57:11.177 INFO:teuthology.orchestra.run.smithi195.stdout:kernel.core_pattern = core 2024-02-22T22:57:11.213 DEBUG:teuthology.orchestra.run.smithi049:> test -e /home/ubuntu/cephtest/archive/coredump 2024-02-22T22:57:11.223 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-22T22:57:11.223 DEBUG:teuthology.orchestra.run.smithi195:> test -e /home/ubuntu/cephtest/archive/coredump 2024-02-22T22:57:11.259 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-22T22:57:11.260 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-02-22T22:57:11.271 INFO:teuthology.task.internal:Transferring archived files... 2024-02-22T22:57:11.272 DEBUG:teuthology.misc:Transferring archived files from smithi049:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi/7571373/remote/smithi049 2024-02-22T22:57:11.273 DEBUG:teuthology.orchestra.run.smithi049:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-02-22T22:57:11.312 DEBUG:teuthology.misc:Transferring archived files from smithi195:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi/7571373/remote/smithi195 2024-02-22T22:57:11.312 DEBUG:teuthology.orchestra.run.smithi195:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-02-22T22:57:11.341 INFO:teuthology.task.internal:Removing archive directory... 2024-02-22T22:57:11.341 DEBUG:teuthology.orchestra.run.smithi049:> rm -rf -- /home/ubuntu/cephtest/archive 2024-02-22T22:57:11.348 DEBUG:teuthology.orchestra.run.smithi195:> rm -rf -- /home/ubuntu/cephtest/archive 2024-02-22T22:57:11.385 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-02-22T22:57:11.398 INFO:teuthology.task.internal:Not uploading archives. 2024-02-22T22:57:11.398 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-02-22T22:57:11.411 INFO:teuthology.task.internal:Tidying up after the test... 2024-02-22T22:57:11.411 DEBUG:teuthology.orchestra.run.smithi049:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-02-22T22:57:11.413 DEBUG:teuthology.orchestra.run.smithi195:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-02-22T22:57:11.419 INFO:teuthology.orchestra.run.smithi049.stdout: 1048609 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 22 22:57 /home/ubuntu/cephtest 2024-02-22T22:57:11.438 INFO:teuthology.orchestra.run.smithi195.stdout: 1048617 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 22 22:57 /home/ubuntu/cephtest 2024-02-22T22:57:11.440 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-02-22T22:57:11.452 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-02-22T22:57:11.483 INFO:teuthology.nuke:Checking targets against current locks 2024-02-22T22:57:11.513 DEBUG:teuthology.nuke:shortname: smithi049 2024-02-22T22:57:11.513 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-02-22T22:57:11.536 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi049.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi/7571373', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '20.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-02-22 22:01:46.447509', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFyT/r7xuKfmg50w0OdQebr4A/ptJo1Zk6DyZNZNZM/q5rW+sznh+wvHqeT3e4YtCdZLaXyvMms8o8u8H5nXOYM='} 2024-02-22T22:57:11.539 DEBUG:teuthology.nuke:shortname: smithi195 2024-02-22T22:57:11.540 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-02-22T22:57:11.558 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi195.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi/7571373', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '20.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-02-22 22:01:46.446089', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFyT/r7xuKfmg50w0OdQebr4A/ptJo1Zk6DyZNZNZM/q5rW+sznh+wvHqeT3e4YtCdZLaXyvMms8o8u8H5nXOYM='} 2024-02-22T22:57:11.586 INFO:teuthology.orchestra.console.smithi049:Power off 2024-02-22T22:57:11.586 DEBUG:teuthology.orchestra.console.smithi049:pexpect command: ipmitool -H smithi049.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-02-22T22:57:11.612 DEBUG:teuthology.orchestra.console.smithi049:power off output: Chassis Power Control: Down/Off 2024-02-22T22:57:11.612 DEBUG:teuthology.orchestra.console.smithi049:pexpect command: ipmitool -H smithi049.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-22T22:57:11.626 INFO:teuthology.orchestra.console.smithi195:Power off 2024-02-22T22:57:11.627 DEBUG:teuthology.orchestra.console.smithi195:pexpect command: ipmitool -H smithi195.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-02-22T22:57:11.637 DEBUG:teuthology.orchestra.console.smithi049:check power output: Chassis Power is on 2024-02-22T22:57:11.652 DEBUG:teuthology.orchestra.console.smithi195:power off output: Chassis Power Control: Down/Off 2024-02-22T22:57:11.652 DEBUG:teuthology.orchestra.console.smithi195:pexpect command: ipmitool -H smithi195.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-22T22:57:11.677 DEBUG:teuthology.orchestra.console.smithi195:check power output: Chassis Power is on 2024-02-22T22:57:15.639 DEBUG:teuthology.orchestra.console.smithi049:pexpect command: ipmitool -H smithi049.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-22T22:57:15.678 DEBUG:teuthology.orchestra.console.smithi195:pexpect command: ipmitool -H smithi195.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-22T22:57:15.749 DEBUG:teuthology.orchestra.console.smithi049:check power output: Chassis Power is on 2024-02-22T22:57:15.787 DEBUG:teuthology.orchestra.console.smithi195:check power output: Chassis Power is on 2024-02-22T22:57:19.752 DEBUG:teuthology.orchestra.console.smithi049:pexpect command: ipmitool -H smithi049.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-22T22:57:19.788 DEBUG:teuthology.orchestra.console.smithi195:pexpect command: ipmitool -H smithi195.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-22T22:57:19.862 DEBUG:teuthology.orchestra.console.smithi049:check power output: Chassis Power is on 2024-02-22T22:57:19.897 DEBUG:teuthology.orchestra.console.smithi195:check power output: Chassis Power is on 2024-02-22T22:57:23.867 DEBUG:teuthology.orchestra.console.smithi049:pexpect command: ipmitool -H smithi049.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-22T22:57:23.897 DEBUG:teuthology.orchestra.console.smithi195:pexpect command: ipmitool -H smithi195.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-22T22:57:23.977 DEBUG:teuthology.orchestra.console.smithi049:check power output: Chassis Power is off 2024-02-22T22:57:24.007 DEBUG:teuthology.orchestra.console.smithi195:check power output: Chassis Power is off 2024-02-22T22:57:24.078 INFO:teuthology.orchestra.console.smithi049:Power off completed 2024-02-22T22:57:24.108 INFO:teuthology.orchestra.console.smithi195:Power off completed 2024-02-22T22:57:24.212 INFO:teuthology.run:Summary data: description: rados/cephadm/smoke-roleless/{0-distro/ubuntu_20.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} duration: 2628.968151330948 failure_reason: reached maximum tries (301) after waiting for 300 seconds owner: scheduled_yuriw@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=8379b5e3cbe74e62b1b8605efd3001cd status: fail success: false 2024-02-22T22:57:24.213 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-02-22T22:57:24.292 INFO:teuthology.run:FAIL